TabStop
Defines a tab stop for paragraph text alignment at a specific position with optional leader characters; immutable once created.
Definition
Namespace:Telerik.Windows.Documents.Flow.Model.Styles
Assembly:Telerik.Windows.Documents.Flow.dll
Syntax:
public class TabStop
Inheritance: objectTabStop
Constructors
Creates a tab stop at the specified position with the given alignment type and leader character pattern.
public TabStop(double position, TabStopType type, TabStopLeader leader)
The position in device independent pixels (1/96 inch).
typeTabStopTypeThe tab stop type.
leaderTabStopLeaderThe tab stop leader.
Creates a tab stop at the specified position with the given alignment type and no leader.
public TabStop(double position, TabStopType type)
The position in device independent pixels (1/96 inch).
typeTabStopTypeThe tab stop type.
Creates a left-aligned tab stop at the specified position with no leader.
public TabStop(double position)
The position in device independent pixels (1/96 inch).
Methods
Operators
Properties
Gets the repeating character pattern displayed in the space before text reaches this tab stop.
public TabStopLeader Leader { get; }
The tab stop leader.
Gets the horizontal position where text aligns when a tab character is encountered, measured in device independent pixels (1/96 inch).
public double Position { get; }
The position in points.
Gets the alignment behavior applied to text at this tab stop position.
public TabStopType Type { get; }
The tab stop type.