Remarks
The property's default value is the system color for text.
The property returns its default value when the text selection contains multiple sections with mixed setting. The Selection.
Gets or sets the color of a dividing line between two columns.
Introduced: 15.0.
public Color ColumnLineColor { get; set; }
The following example uses Column
TXTextControl.SectionFormat sf = new TXTextControl.SectionFormat(3, new int[] { 1500, 2500, 5000 }, new int[] { 250, 500 });
sf.ColumnLineColor = Color.Black;
sf.ColumnLineWidth = 50;
sf.PageSize = new TXTextControl.PageSize(500, 1000);
sf.Landscape = true;
sf.PageMargins = new TXTextControl.PageMargins(100, 100, 100, 100);
textControl1.Sections.Add(TXTextControl.SectionBreakKind.BeginAtNewPage);
textControl1.Sections.GetItem().Format = sf;
The property's default value is the system color for text.
The property returns its default value when the text selection contains multiple sections with mixed setting. The Selection.