Class QueryProgressBarCellStyleEventArgs
Represents the class that provides the information for the style of the progress bar in the cell.
Inherited Members
Namespace: Syncfusion.WinForms.DataGrid.Events
Assembly: Syncfusion.SfDataGrid.WinForms.dll
Syntax
public class QueryProgressBarCellStyleEventArgs : GridEventArgs
Constructors
QueryProgressBarCellStyleEventArgs(ProgressBarCellStyleInfo, Int32, Int32, Int32, Int32, Int32, GridColumn, Object, Object)
Initializes a new instance of the QueryProgressBarCellStyleEventArgs class.
Declaration
public QueryProgressBarCellStyleEventArgs(ProgressBarCellStyleInfo style, int maximum, int minimum, int value, int rowIndex, int columnIndex, GridColumn column, object record, object originalSender)
Parameters
Type | Name | Description |
---|---|---|
ProgressBarCellStyleInfo | style | The style of the cell. |
System.Int32 | maximum | The maximum of the cell. |
System.Int32 | minimum | The minimum of the cell. |
System.Int32 | value | The value of the cell. |
System.Int32 | rowIndex | The row index of the cell. |
System.Int32 | columnIndex | The column index of the cell. |
GridColumn | column | The column of the cell. |
System.Object | record | The record of the cell. |
System.Object | originalSender | The OriginalSender of the event. |
Properties
Column
Gets the GridColumn of the progress bar cell.
Declaration
public GridColumn Column { get; }
Property Value
Type |
---|
GridColumn |
ColumnIndex
Gets the column index of the progress bar cell.
Declaration
public int ColumnIndex { get; }
Property Value
Type |
---|
System.Int32 |
Maximum
Gets or sets the maximum value of the ProgressBar
Declaration
public int Maximum { get; set; }
Property Value
Type |
---|
System.Int32 |
Minimum
Gets or sets the minimum value of the ProgressBar
Declaration
public int Minimum { get; set; }
Property Value
Type |
---|
System.Int32 |
Record
Gets the underlying data object of the progress bar cell.
Declaration
public object Record { get; }
Property Value
Type |
---|
System.Object |
RowIndex
Gets the row index of the progress bar cell.
Declaration
public int RowIndex { get; }
Property Value
Type |
---|
System.Int32 |
Style
Gets the styles of the ProgressBar.
Declaration
public ProgressBarCellStyleInfo Style { get; }
Property Value
Type |
---|
ProgressBarCellStyleInfo |
Value
Gets or sets the value of the progress bar cell.
Declaration
public int Value { get; set; }
Property Value
Type |
---|
System.Int32 |