| ImageEn, unit iexRichEdit |
|
TIEParaAttributes.Tab
Declaration
property Tab[Index: Byte]: Longint;
Description
Specify the position of a tab stop in points (1/72 of an inch). Index ranges from 0 to
TabCount - 1.
Example
// Set the first tab stop at 1 inch
// const Points_Per_Inch = 72;
IERichEdit1.Paragraph.TabCount := 1;
IERichEdit1.Paragraph.Tab[0] := 1 * Points_Per_Inch;