Class TextboxState
Represents the state in which the textbox is currently in.
Inheritance
System.Object
TextboxState
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: AGS.API
Assembly: AGS.API.dll
Syntax
public class TextboxState
Constructors
| Improve this Doc View SourceTextboxState(String, Int32)
Initializes a new instance of the TextboxState class.
Declaration
public TextboxState(string text, int caretPosition)
Parameters
Type | Name | Description |
---|---|---|
System.String | text | Text. |
System.Int32 | caretPosition | Caret position. |
Properties
| Improve this Doc View SourceCaretPosition
Gets or sets the caret position.
Declaration
public int CaretPosition { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | The caret position. |
Text
Gets or sets the text.
Declaration
public string Text { get; set; }
Property Value
Type | Description |
---|---|
System.String | The text. |