Class BeforeAutoFillCellEventArgs<T>
Provides information about the BeforeAutoFillCell event.
Inheritance
Namespace: Syncfusion.Blazor.Grids
Assembly: Syncfusion.Blazor.dll
Syntax
public class BeforeAutoFillCellEventArgs<T> : Object
Type Parameters
Name | Description |
---|---|
T | TValue of grid component. |
Constructors
BeforeAutoFillCellEventArgs()
Declaration
public BeforeAutoFillCellEventArgs()
Properties
Cancel
Gets or sets a value indicating whether to cancel the autofill action for a particular cell. You can cancel and handle auto filling.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | The default value is |
ColumnIndex
Gets the column index of the cell associated with autofill action.
Declaration
public int ColumnIndex { get; }
Property Value
Type | Description |
---|---|
System.Int32 | An integer representing the column index associated with the autofill action. |
ColumnName
Gets the column field name of the cell associated with autofill action.
Declaration
public string ColumnName { get; }
Property Value
Type | Description |
---|---|
System.String | A string representing the column field name associated with the autofill action. |
Data
Gets the row data of the cell associated with autofill action.
Declaration
public T Data { get; }
Property Value
Type | Description |
---|---|
T | Row data associated with autofill action. |
RowIndex
Gets the row index of the cell associated with autofill action.
Declaration
public int RowIndex { get; }
Property Value
Type | Description |
---|---|
System.Int32 | An integer representing the row index associated with the autofill action. |
Value
Gets or sets the value getting filled in the cell. You can change value using BeforeAutoFillCell event.
Declaration
public object Value { get; set; }
Property Value
Type | Description |
---|---|
System.Object | Returns the cell value based on column value type. The default value is null. |