Class GridQueryCoveredRangeEventArgs
GridQueryCoveredRangeEventArgs is a custom event argument class used by the QueryCoveredRange event to query information about covered cells at a specified cell.
This event allows you to specify covered ranges at run-time, e.g when you have a large grid with repeating patterns of covered ranges. If the specified row and column index is part of a covered cell's range, you should assign the coordinates of the covered cell to Range and set Handled to True.
Handled indicates that you supplied data from your event handler and no further querying for data about covered range information for this cell is necessary.
Inheritance
Namespace: Syncfusion.Windows.Controls.Grid
Assembly: Syncfusion.Grid.Wpf.dll
Syntax
public class GridQueryCoveredRangeEventArgs : SyncfusionHandledEventArgs
Constructors
GridQueryCoveredRangeEventArgs(RowColumnIndex)
Initalizes a new object.
Declaration
public GridQueryCoveredRangeEventArgs(RowColumnIndex cellRowColumnIndex)
Parameters
Type | Name | Description |
---|---|---|
RowColumnIndex | cellRowColumnIndex |
GridQueryCoveredRangeEventArgs(RowColumnIndex, CoveredCellInfo)
Initalizes a new object.
Declaration
public GridQueryCoveredRangeEventArgs(RowColumnIndex cellRowColumnIndex, CoveredCellInfo range)
Parameters
Type | Name | Description |
---|---|---|
RowColumnIndex | cellRowColumnIndex | |
CoveredCellInfo | range | A CoveredCellInfo that will receive the resulting range for the covered cell. |
Properties
CellRowColumnIndex
The cell row column index.
Declaration
public RowColumnIndex CellRowColumnIndex { get; }
Property Value
Type |
---|
RowColumnIndex |
Range
A CoveredCellInfo that will receive the resulting range for the covered cell.
Declaration
[TraceProperty(true)]
public CoveredCellInfo Range { get; set; }
Property Value
Type |
---|
CoveredCellInfo |