Answers for "setting tab stops in delphi"

1

setting tab stops in delphi

!!! If {.paragraph} dos not work mak sure you are using a RICHEDIT and not a TMEMO !!!

//RichEdit1.Paragraph.TabCount := {Amont of tabs};
//RichEdit1.Paragraph.Tab[{Tab namber}] := {Stat of tab};

eg
RichEdit1.Paragraph.TabCount := 4;

    RichEdit1.Paragraph.Tab[0] := 100;
    RichEdit1.Paragraph.Tab[1] := 200;
    RichEdit1.Paragraph.Tab[2] := 350;
    RichEdit1.Paragraph.Tab[3] := 400;
Posted by: Guest on August-14-2021

Browse Popular Code Answers by Language