Class ValueChangedEventArgs
A class containing data for the ICalcData.ValueChanged event.
Inheritance
System.Object
ValueChangedEventArgs
Namespace: Syncfusion.XlsIO.Calculate
Assembly: Syncfusion.XlsIO.NET.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 |