Defines behaviors for TabForwardCommand and TabBackwardCommand.
Definition
Namespace:Telerik.WinForms.Documents.RichTextBoxCommands
Assembly:Telerik.WinControls.RichTextEditor.dll
Syntax:
C#
[Flags]
public enum TabCommandBehaviors
Fields
Command tries to append table row to the current table if possible.
C#
AppendTableRow = 16
Command tries to change current paragraph's left indent if possible.
C#
ChangeParagraphLeftIndent = 4
Command tries to change current paragraph's list level if possible.
C#
ChangeParagraphListLevel = 2
Default behavior, which is combination of all other behaviors.
C#
Default = InsertTabSymbol | ChangeParagraphListLevel | ChangeParagraphLeftIndent | NavigateInTable | AppendTableRow
Command tries to insert tab symbol if possible.
C#
InsertTabSymbol = 1
Command tries to navigate caret position in current table if possible.
C#
NavigateInTable = 8