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