Enum TextEditingState
- Namespace
- Northwoods.Go.Tools
- Assembly
- Northwoods.GoDiagram.Avalonia.dll
This enumeration specifies possible values for State.
public enum TextEditingState
Fields
Active = 1DoActivate() sets the value of State to this.
Editing = 2The default text editor receiving focus sets the value of State to this.
Invalid = 4If validation fails, AcceptText(TextEditingAccept) sets the value of State to this.
None = 0This is the starting value before the tool is activated.
Validated = 5Once accepted and the tool begins the "TextEditing" transaction, the value of State is set to this.
Validating = 3AcceptText(TextEditingAccept) sets the value of State to this.