setting tab stops in delphi

Solutions on MaxInterview for setting tab stops in delphi by the best coders in the world

showing results for - "setting tab stops in delphi"
Jona
30 Feb 2016
1!!! If {.paragraph} dos not work mak sure you are using a RICHEDIT and not a TMEMO !!!
2
3//RichEdit1.Paragraph.TabCount := {Amont of tabs};
4//RichEdit1.Paragraph.Tab[{Tab namber}] := {Stat of tab};
5
6eg
7RichEdit1.Paragraph.TabCount := 4;
8
9    RichEdit1.Paragraph.Tab[0] := 100;
10    RichEdit1.Paragraph.Tab[1] := 200;
11    RichEdit1.Paragraph.Tab[2] := 350;
12    RichEdit1.Paragraph.Tab[3] := 400;