Class GridQueryCoveredRangeEventArgs
Provides data for QueryCoveredRange event.
Namespace: Syncfusion.UI.Xaml.DataGrid
Assembly: Syncfusion.Grid.WinUI.dll
Syntax
public class GridQueryCoveredRangeEventArgs : GridHandledEventArgs
Constructors
GridQueryCoveredRangeEventArgs(RowColumnIndex, GridColumn, Object, Object)
Initialize a new instance of GridQueryCoveredRangeEventArgs class.
Declaration
public GridQueryCoveredRangeEventArgs(RowColumnIndex cellRowColumnIndex, GridColumn column, object record, object originalSource)
Parameters
Type | Name | Description |
---|---|---|
RowColumnIndex | cellRowColumnIndex | The row index. |
GridColumn | column | The column index. |
System.Object | record | The record of the cell |
System.Object | originalSource | The source of the event. |
GridQueryCoveredRangeEventArgs(RowColumnIndex, CoveredCellInfo, GridColumn, Object, Object)
Initialize a new instance of GridQueryCoveredRangeEventArgs class.
Declaration
public GridQueryCoveredRangeEventArgs(RowColumnIndex cellRowColumnIndex, CoveredCellInfo range, GridColumn 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. |
GridColumn | column | The column index. |
System.Object | record | The record of the cell |
System.Object | originalSource | The source of the event. |
Properties
GridColumn
Gets the GridColumn of the cell which triggers this event.
Declaration
public GridColumn GridColumn { get; }
Property Value
Type |
---|
GridColumn |
Range
Gets or sets the CoveredCellInfo range to merge the cells.
Declaration
public CoveredCellInfo Range { get; set; }
Property Value
Type | Description |
---|---|
CoveredCellInfo | A CoveredCellInfo that will receive the resulting range for the covered cell. |
Record
Gets the data object associated with the row which has the grid cell triggered this event.
Declaration
public object Record { get; }
Property Value
Type |
---|
System.Object |
RowColumnIndex
Gets the RowColumnIndex of cell which triggers this event.
Declaration
public RowColumnIndex RowColumnIndex { get; }
Property Value
Type | Description |
---|---|
RowColumnIndex | The RowColumnIndex of the cell which triggers this event. |