ClassTabStop
Class representing tab stops in a RadDocument.
Definition
Namespace:Telerik.Windows.Documents.Model
Assembly:Telerik.Windows.Controls.RichTextBox.dll
Syntax:
public class TabStop : INotifyPropertyChanged
Inheritance: objectTabStop
Implements:
Constructors
TabStop()
Initializes a new instance of the TabStop class.
Declaration
public TabStop()
TabStop(TabStopType, double, TabStopLeader)
Initializes a new instance of the TabStop class.
Declaration
public TabStop(TabStopType tabStopType, double position, TabStopLeader tabStopLeader = TabStopLeader.None)
Parameters
tabStopType
Type of the tab stop.
position
The position of the tab stop.
tabStopLeader
The tab stop leader.
Properties
Position
Gets or sets the position of the tab stop.
Declaration
[XamlSerializable]
public double Position { get; set; }
Property Value
The position.
TabStopLeader
Gets or sets the tab stop leader.
Declaration
[XamlSerializable(TabStopLeader.None)]
public TabStopLeader TabStopLeader { get; set; }
Property Value
The tab stop leader.
TabStopType
Gets or sets the type of the tab stop.
Declaration
[XamlSerializable]
public TabStopType TabStopType { get; set; }
Property Value
The type of the tab stop.
Methods
Clone()
Clones this instance.
Equals(object)
Determines whether the specified object, is equal to this instance.
GetHashCode()
Returns a hash code for this instance.
Declaration
public override int GetHashCode()
Returns
A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table.
Overrides
OnPropertyChanged(PropertyChangedEventArgs)
Raises the event. Called after changing a property value.
Declaration
protected virtual void OnPropertyChanged(PropertyChangedEventArgs args)
Parameters
args
The PropertyChangedEventArgs instance containing the event data.
Events
PropertyChanged
Occurs after a property value changes.
Declaration
public event PropertyChangedEventHandler PropertyChanged
Event Value
Implements
Operators
operator !=(TabStop, TabStop)
Implements the operator !=.
operator ==(TabStop, TabStop)
Implements the operator ==.