TextChangeTypes Class
Provides access to the built-in ITextChangeType instances, that indicate the type of ITextChange made.
public static class TextChangeTypes
- Inheritance:
- object object
Properties
AutoComplete
The ITextChangeType for an IntelliPrompt auto-complete action.
AutoCorrect
The ITextChangeType for an auto-correct action.
AutoFormat
The ITextChangeType for an auto-format action.
AutoIndent
The ITextChangeType for an auto-indent action.
AutoReplace
The ITextChangeType for an auto-replace action.
Backspace
The ITextChangeType for the press of the Backspace key.
ChangeCase
The ITextChangeType for a character casing change action.
CommentLines
The ITextChangeType for a comment lines action.
ConvertSpacesToTabs
The ITextChangeType for a convert spaces to tabs action.
ConvertTabsToSpaces
The ITextChangeType for a convert tabs to spaces action.
Custom
The ITextChangeType for a custom change type.
public static ITextChangeType Custom { get; }
Property Value
Remarks
Instead of using this ITextChangeType, it really is best to create your own custom ITextChangeType with the proper name.
Cut
The ITextChangeType for a cut to the clipboard action.
Delete
The ITextChangeType for a deletion action.
DragAndDrop
The ITextChangeType for a drag and drop action.
Duplicate
The ITextChangeType for a duplicating a selection.
Enter
The ITextChangeType for the press of the Enter key.
HeaderAndFooterChange
The ITextChangeType for the change of a snapshot's header and footer.
Indent
The ITextChangeType for an indent action.
InsertCodeSnippetTemplate
The ITextChangeType for a code snippet template insertion action.
InsertFile
The ITextChangeType for an insert file action.
MoveSelectedLinesDown
The ITextChangeType for a move selected lines down action.
MoveSelectedLinesUp
The ITextChangeType for a move selected lines up action.
NormalizeLineTerminators
The ITextChangeType for a move selected lines up action.
OpenLine
The ITextChangeType for an open line action.
Outdent
The ITextChangeType for an outdent action.
Paste
The ITextChangeType for a paste from the clipboard action.
Replace
The ITextChangeType for a replace action.
ReplaceAll
The ITextChangeType for a replace all action.
SpellingChange
The ITextChangeType for a spelling change action.
TextReplacement
The ITextChangeType for a text replacement action.
ToggleCase
The ITextChangeType for a toggle case action.
TransposeCharacters
The ITextChangeType for a transpose characters action.
TransposeLines
The ITextChangeType for a transpose lines action.
TransposeWords
The ITextChangeType for a transpose words action.
TrimTrailingWhitespace
The ITextChangeType for a trim trailing whitespace action.
Typing
The ITextChangeType for a typing action.
UncommentLines
The ITextChangeType for an uncomment lines action.
UpdateCodeSnippetTemplateFields
The ITextChangeType for a code snippet template update fields action.
public static ITextChangeType UpdateCodeSnippetTemplateFields { get; }