ClassTabStop
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
TabStop(double)
Creates a left-aligned tab stop at the specified position with no leader.
Declaration
public TabStop(double position)
Parameters
position
The position in device independent pixels (1/96 inch).
TabStop(double, TabStopType)
Creates a tab stop at the specified position with the given alignment type and no leader.
Declaration
public TabStop(double position, TabStopType type)
Parameters
position
The position in device independent pixels (1/96 inch).
type
The tab stop type.
TabStop(double, TabStopType, TabStopLeader)
Creates a tab stop at the specified position with the given alignment type and leader character pattern.
Declaration
public TabStop(double position, TabStopType type, TabStopLeader leader)
Parameters
position
The position in device independent pixels (1/96 inch).
type
The tab stop type.
leader
The tab stop leader.
Properties
Leader
Gets the repeating character pattern displayed in the space before text reaches this tab stop.
Declaration
public TabStopLeader Leader { get; }
Property Value
The tab stop leader.
Position
Gets the horizontal position where text aligns when a tab character is encountered, measured in device independent pixels (1/96 inch).
Declaration
public double Position { get; }
Property Value
The position in points.
Type
Gets the alignment behavior applied to text at this tab stop position.
Declaration
public TabStopType Type { get; }
Property Value
The tab stop type.
Methods
GetHashCode()
Serves as a hash function for a particular type.
Operators
operator !=(TabStop, TabStop)
Determines whether the specified tab stops are different.
operator ==(TabStop, TabStop)
Determines whether the specified tab stops are equal.