New to Telerik UI for WinFormsStart a free 30-day trial

TabStop

Class

Class representing tab stops in a RadDocument.

Definition

Namespace:Telerik.WinForms.Documents.Model

Assembly:Telerik.WinControls.RichTextEditor.dll

Syntax:

C#
public class TabStop : INotifyPropertyChanged

Inheritance: objectTabStop

Implements: INotifyPropertyChanged

Constructors

Initializes a new instance of the TabStop class.

C#
public TabStop()

Initializes a new instance of the TabStop class.

C#
public TabStop(TabStopType tabStopType, double position, TabStopLeader tabStopLeader = TabStopLeader.None)
Parameters:tabStopTypeTabStopType

Type of the tab stop.

positiondouble

The position of the tab stop.

tabStopLeaderTabStopLeader

The tab stop leader.

Properties

Gets or sets the position of the tab stop.

C#
[XamlSerializable]
public double Position { get; set; }
Property Value:

The position.

Gets or sets the tab stop leader.

C#
[XamlSerializable(TabStopLeader.None)]
public TabStopLeader TabStopLeader { get; set; }
Property Value:

The tab stop leader.

Gets or sets the type of the tab stop.

C#
[XamlSerializable]
public TabStopType TabStopType { get; set; }
Property Value:

The type of the tab stop.

Methods

Clones this instance.

C#
public TabStop Clone()
Returns:

TabStop

The cloned instance.

Determines whether the specified object, is equal to this instance.

C#
public override bool Equals(object obj)
Parameters:objobject

The object to compare with this instance.

Returns:

bool

true if the specified object is equal to this instance; otherwise, false.

Overrides: object.Equals(object)

Returns a hash code for this instance.

C#
public override int GetHashCode()
Returns:

int

A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table.

Overrides: object.GetHashCode()

Raises the event. Called after changing a property value.

C#
protected virtual void OnPropertyChanged(PropertyChangedEventArgs args)
Parameters:argsPropertyChangedEventArgs

The PropertyChangedEventArgs instance containing the event data.

Events

Occurs after a property value changes.

C#
public event PropertyChangedEventHandler PropertyChanged

Implements: INotifyPropertyChanged.PropertyChanged

Operators

Implements the operator !=.

C#
public static bool operator !=(TabStop left, TabStop right)
Parameters:leftTabStop

The left.

rightTabStop

The right.

Returns:

bool

The result of the operator.

Implements the operator ==.

C#
public static bool operator ==(TabStop left, TabStop right)
Parameters:leftTabStop

The left.

rightTabStop

The right.

Returns:

bool

The result of the operator.