TabStop
Class representing tab stops in a RadDocument.
Definition
Namespace:Telerik.WinForms.Documents.Model
Assembly:Telerik.WinControls.RichTextEditor.dll
Syntax:
public class TabStop : INotifyPropertyChanged
Inheritance: objectTabStop
Implements:
Constructors
Initializes a new instance of the TabStop class.
public TabStop(TabStopType tabStopType, double position, TabStopLeader tabStopLeader = TabStopLeader.None)
Type of the tab stop.
positiondoubleThe position of the tab stop.
tabStopLeaderTabStopLeaderThe tab stop leader.
Properties
Gets or sets the position of the tab stop.
[XamlSerializable]
public double Position { get; set; }
The position.
Gets or sets the tab stop leader.
[XamlSerializable(TabStopLeader.None)]
public TabStopLeader TabStopLeader { get; set; }
The tab stop leader.
Gets or sets the type of the tab stop.
[XamlSerializable]
public TabStopType TabStopType { get; set; }
The type of the tab stop.
Methods
Returns a hash code for this instance.
public override int GetHashCode()
A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table.
Overrides:
Raises the event. Called after changing a property value.
protected virtual void OnPropertyChanged(PropertyChangedEventArgs args)
The PropertyChangedEventArgs instance containing the event data.
Events
Occurs after a property value changes.
public event PropertyChangedEventHandler PropertyChanged
Implements: