Class GridCurrentCellValidateStringEventArgs
Provides data about the cancelable CurrentCellValidateString event.
Inherited Members
Namespace: Syncfusion.Windows.Forms.Grid
Assembly: Syncfusion.Grid.Windows.dll
Syntax
public class GridCurrentCellValidateStringEventArgs : SyncfusionCancelEventArgs
Remarks
The GridCurrentCellValidateStringEventArgs is a custom event argument class used by the CurrentCellValidateString event that notifies you when the user types text into the current cell.
To restrict user input into the current cell while entering text, you can set System.ComponentModel.CancelEventArgs.Cancel to True.
Constructors
GridCurrentCellValidateStringEventArgs(String)
Initializes the new instances for the GridCurrentCellValidateStringEventArgs class.
Declaration
public GridCurrentCellValidateStringEventArgs(string text)
Parameters
Type | Name | Description |
---|---|---|
System.String | text | The text that will be entered into the current cell. |
Properties
Text
Gets the text that will be entered into the current cell.
Declaration
[TraceProperty(true)]
public string Text { get; }
Property Value
Type |
---|
System.String |