Class QueryCheckBoxCellStyleEventArgs
Represents the class that provides the information for the style of the check box in the cell.
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 QueryCheckBoxCellStyleEventArgs : GridEventArgs
Constructors
QueryCheckBoxCellStyleEventArgs(Int32, Int32, GridColumn, CheckBoxCellStyleInfo, Object, String, Object)
Initializes a new instance of the QueryCheckBoxCellStyleEventArgs class.
Declaration
public QueryCheckBoxCellStyleEventArgs(int rowIndex, int columnIndex, GridColumn column, CheckBoxCellStyleInfo style, object record, string displayText, object originalSender)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | rowIndex | The row index of the cell. |
System.Int32 | columnIndex | The column index of the cell. |
GridColumn | column | The GridColumn of the cell. |
CheckBoxCellStyleInfo | style | The style for the check box in the cell. |
System.Object | record | The underlying record of the cell. |
System.String | displayText | The display text of the cell. |
System.Object | originalSender | The OriginalSender of the event. |
Properties
Column
Gets the GridColumn of the check box cell.
Declaration
public GridColumn Column { get; }
Property Value
Type |
---|
GridColumn |
ColumnIndex
Gets the column index of the check box cell.
Declaration
public int ColumnIndex { get; }
Property Value
Type |
---|
System.Int32 |
DisplayText
Gets or sets a value indicating the text to be displayed in the check box cell.
Declaration
public string DisplayText { get; set; }
Property Value
Type |
---|
System.String |
Record
Gets the underlying data object of the check box cell.
Declaration
public object Record { get; }
Property Value
Type |
---|
System.Object |
RowIndex
Gets the row index of the check box cell.
Declaration
public int RowIndex { get; }
Property Value
Type |
---|
System.Int32 |
Style
Gets the style for the check box of the check box cell.
Declaration
public CheckBoxCellStyleInfo Style { get; }
Property Value
Type |
---|
CheckBoxCellStyleInfo |