RichTextBox::SelectionTabs Property
.NET Framework (current version)
Gets or sets the absolute tab stop positions in a RichTextBox control.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
public: [BrowsableAttribute(false)] property array<int>^ SelectionTabs { array<int>^ get(); void set(array<int>^ value); }
Property Value
Type: array<System::Int32>^An array in which each member specifies a tab offset, in pixels.
| Exception | Condition |
|---|---|
| ArgumentOutOfRangeException | The array has more than the maximum 32 elements. |
This property enables you to obtain an array that contains the spacing for each tab in the current text selection within the RichTextBox control. You can then use this property to adjust the size of each tab within the text selection. For example, if you want to adjust the tab space within the document, you can select the entire document and obtain the list of tab spaces using the SelectionTabs property. You can then adjust them to new values and reassign them to this property.
.NET Framework
Available since 1.1
Available since 1.1
Show: