Gets or sets the border style of the ruler bar.

Introduced: 11.0.

Syntax

public RulerBarBorderStyle BorderStyle { get; set; }
Public Property BorderStyle As RulerBarBorderStyle

Members

Member Description
ColorScheme The ruler bar has a flat design without a border. The colors depend on the color scheme currently set through the system or on the colors set with the DisplayColors property.
Flat The ruler bar has a flat design and no border.
FixedSingle The ruler bar has has a flat design and a border with a single line.
Simple3D The ruler bar has a 3D design and no border.
Fixed3D The ruler bar has a 3D design and a border with a single line.

Examples

The following example uses BorderStyle property and sets its value to Flat. This means ruler_bar has a flat design and no border.

TXTextControl.RulerBar rulerBar = new TXTextControl.RulerBar();

rulerBar.Alignment   = TXTextControl.RulerBarAlignment.Top;
rulerBar.BorderStyle = TXTextControl.RulerBarBorderStyle.Flat;
Dim rulerBar As TXTextControl.RulerBar = New TXTextControl.RulerBar()

rulerBar.Alignment   = TXTextControl.RulerBarAlignment.Top
rulerBar.BorderStyle = TXTextControl.RulerBarBorderStyle.Flat
End Sub