Class TextBoxValueChangingEventArgs
Provides data for TextBoxValueChanging Event
Inheritance
System.Object
TextBoxValueChangingEventArgs
Namespace: Syncfusion.Windows.Forms.Tools.XPMenus
Assembly: Syncfusion.Tools.Windows.dll
Syntax
public class TextBoxValueChangingEventArgs : CancelEventArgs
Constructors
TextBoxValueChangingEventArgs(String, String)
Declaration
public TextBoxValueChangingEventArgs(string OldValue, string NewValue)
Parameters
Type | Name | Description |
---|---|---|
System.String | OldValue | |
System.String | NewValue |
Properties
CanUpdateSelectedItem
Enable/Disable to update the TextBoxValue value when the selected item is changed in List Items.
Declaration
public bool CanUpdateSelectedItem { get; set; }
Property Value
Type |
---|
System.Boolean |
NewValue
Gets the currently selected ComboBoxBarItem Text.
Declaration
public string NewValue { get; }
Property Value
Type |
---|
System.String |
OldValue
Gets the previously selected ComboBoxBarItem Text.
Declaration
public string OldValue { get; }
Property Value
Type |
---|
System.String |