Class QueryCoveredRangeEventArgs
Provides the data for the QueryCoveredRange event.
Inheritance
System.Object
System.EventArgs
QueryCoveredRangeEventArgs
Inherited Members
System.EventArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Syncfusion.WinForms.DataGrid.Events
Assembly: Syncfusion.SfDataGrid.WinForms.dll
Syntax
public class QueryCoveredRangeEventArgs : GridHandledEventArgs
Constructors
QueryCoveredRangeEventArgs(Object)
Initializes a new instance of the QueryCoveredRangeEventArgs class.
Declaration
public QueryCoveredRangeEventArgs(object originalSender)
Parameters
Type | Name | Description |
---|---|---|
System.Object | originalSender | The object of the sender. |
Properties
ColumnIndex
Gets the column index of the cell.
Declaration
public int ColumnIndex { get; }
Property Value
Type |
---|
System.Int32 |
GridColumn
Gets the GridColumn of the cell being merged.
Declaration
public GridColumn GridColumn { get; }
Property Value
Type |
---|
GridColumn |
Range
Gets or sets the range to be added to the covered cells.
Declaration
public CoveredCellInfo Range { get; set; }
Property Value
Type |
---|
CoveredCellInfo |
Record
Gets the data object associated with the row.
Declaration
public object Record { get; }
Property Value
Type |
---|
System.Object |
RowIndex
Gets the row index of the cell.
Declaration
public int RowIndex { get; }
Property Value
Type |
---|
System.Int32 |