Class CurrentCellValidatingEventArgs
Represents the class that holds the information about the CurrentCellValidating event.
Inherited Members
System.EventArgs.Empty
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: Syncfusion.WinForms.DataGrid.Events
Assembly: Syncfusion.SfDataGrid.WinForms.dll
Syntax
public class CurrentCellValidatingEventArgs : GridEventArgs
Constructors
CurrentCellValidatingEventArgs(Object)
Initializes a new instance of the CurrentCellValidatingEventArgs class.
Declaration
public CurrentCellValidatingEventArgs(object originalSender)
Parameters
Type | Name | Description |
---|---|---|
System.Object | originalSender | The original reporting sender that raised the event. |
Properties
Column
Gets the GridColumn of the current cell.
Declaration
public GridColumn Column { get; }
Property Value
Type |
---|
GridColumn |
ErrorMessage
Gets or sets the error message of the current cell.
Declaration
public string ErrorMessage { get; set; }
Property Value
Type |
---|
System.String |
IsValid
Gets or sets a value indicating whether the current cell is valid or not.
Declaration
public bool IsValid { get; set; }
Property Value
Type |
---|
System.Boolean |
NewValue
Gets or sets the new value of the current cell.
Declaration
public object NewValue { get; set; }
Property Value
Type |
---|
System.Object |
OldValue
Gets the old value of the current cell.
Declaration
public object OldValue { get; }
Property Value
Type |
---|
System.Object |
RowData
Gets the DataRowBase of the current cell.
Declaration
public object RowData { get; }
Property Value
Type |
---|
System.Object |