Class ValueChangedEventArgs
A class containing data for the ICalcData.ValueChanged event.
Inheritance
System.Object
System.EventArgs
ValueChangedEventArgs
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.Windows.Forms.CellGrid
Assembly: Syncfusion.Spreadsheet.Windows.dll
Syntax
public class ValueChangedEventArgs : EventArgs
Constructors
ValueChangedEventArgs(Int32, Int32, String)
The constructor.
Declaration
public ValueChangedEventArgs(int row, int col, string value)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | row | One-based row index for the value. |
System.Int32 | col | One-based col index for the value. |
System.String | value | the value at the specified row,col. |
Properties
ColIndex
A property that gets/sets One-base column index.
Declaration
public int ColIndex { get; set; }
Property Value
Type |
---|
System.Int32 |
RowIndex
A property that gets/sets One-based row index.
Declaration
public int RowIndex { get; set; }
Property Value
Type |
---|
System.Int32 |
Value
A property that gets/sets the value.
Declaration
public string Value { get; set; }
Property Value
Type |
---|
System.String |