Applies to
Declaration
property RightLinePos: Integer;
property RightLinePen: TPen;
Description
These properties control right gutter line position and appearance. A positive value for RightLinePos will make a vertical line appear at the position of the corresponding column, while a negative value is used to specify a fixed pixel position relative to the left margin. For example, if RightLinePos is set to 80, the right gutter line will appear at column 80. If it is set to -200, it will appear 200 pixels to the right of the left margin.
In the case of a positive value, the position of the right gutter line is dependant on the font size. TPlusMemo uses the width of a space to determine the horizontal position of the line, which is equal to the width of all characters only for a fixed pitch font.
The default value for RightLinePos is zero, which means no right gutter line is drawn.
Property RightLinePen is a TPen object used to control the appearance of the gutter line. The initial pen is a gray dotted line.
Note that the presence of a right gutter line does not influence word wrapping operations. Those are controlled through properties WordWrap and ColumnWrap.
These properties are available at run time and design time, with read and write access.