Class DataGridQueryCoveredRangeEventArgs
Provides data for QueryCoveredRange event.
Inheritance
System.Object
DataGridQueryCoveredRangeEventArgs
Namespace: Syncfusion.Maui.DataGrid
Assembly: Syncfusion.Maui.DataGrid.dll
Syntax
public class DataGridQueryCoveredRangeEventArgs : HandledEventArgs
Constructors
DataGridQueryCoveredRangeEventArgs(RowColumnIndex, CoveredCellInfo, DataGridColumn, Object, Object)
Initialize a new instance of DataGridQueryCoveredRangeEventArgs class.
Declaration
public DataGridQueryCoveredRangeEventArgs(RowColumnIndex cellRowColumnIndex, CoveredCellInfo range, DataGridColumn column, object record, object originalSource)
Parameters
| Type | Name | Description |
|---|---|---|
| RowColumnIndex | cellRowColumnIndex | The row index. |
| CoveredCellInfo | range | A CoveredCellInfo that will receive the resulting range for the covered cell. |
| DataGridColumn | column | The column index. |
| System.Object | record | The record of the cell |
| System.Object | originalSource | The source of the event. |
DataGridQueryCoveredRangeEventArgs(RowColumnIndex, DataGridColumn, Object, Object)
Initialize a new instance of DataGridQueryCoveredRangeEventArgs class.
Declaration
public DataGridQueryCoveredRangeEventArgs(RowColumnIndex cellRowColumnIndex, DataGridColumn column, object record, object originalSource)
Parameters
| Type | Name | Description |
|---|---|---|
| RowColumnIndex | cellRowColumnIndex | The row index. |
| DataGridColumn | column | The column index. |
| System.Object | record | The record of the cell |
| System.Object | originalSource | The source of the event. |
Properties
Column
Gets the column being evaluated for merging.
Declaration
public DataGridColumn Column { get; }
Property Value
| Type |
|---|
| DataGridColumn |
Range
Gets or sets the range information for cell merging. Set this property to define the merge range.
Declaration
public CoveredCellInfo Range { get; set; }
Property Value
| Type |
|---|
| CoveredCellInfo |
Record
Gets the data record for the current row.
Declaration
public object Record { get; }
Property Value
| Type |
|---|
| System.Object |
RowColumnIndex
Gets the row and column index of the cell being evaluated.
Declaration
public RowColumnIndex RowColumnIndex { get; }
Property Value
| Type |
|---|
| RowColumnIndex |