Class
VirtualGridCellValueNeededEventArgs

Provides data for the CellValueNeeded event.

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.GridView.dll

Syntax:

cs-api-definition
public class VirtualGridCellValueNeededEventArgs : VirtualGridCellEventArgs

Inheritance: objectEventArgsVirtualGridEventArgsVirtualGridCellEventArgsVirtualGridCellValueNeededEventArgs

Inherited Members VirtualGridCellEventArgs.RowIndexVirtualGridCellEventArgs.ColumnIndexVirtualGridEventArgs.ViewInfoEventArgs.Empty

Constructors

VirtualGridCellValueNeededEventArgs(int, int, VirtualGridViewInfo)

Initializes a new instance of the VirtualGridCellValueNeededEventArgs class.

Declaration

cs-api-definition
public VirtualGridCellValueNeededEventArgs(int rowIndex, int columnIndex, VirtualGridViewInfo viewInfo)

Parameters

rowIndex

int

Index of the row.

columnIndex

int

Index of the column.

viewInfo

VirtualGridViewInfo

The view info.

Properties

FieldName

Gets or sets the name of the field that the cell will display.

Declaration

cs-api-definition
public string FieldName { get; set; }

Property Value

string

FormatString

Gets or sets the format string of the cell.

Declaration

cs-api-definition
public string FormatString { get; set; }

Property Value

string

Value

Gets or sets the value of the cell.

Declaration

cs-api-definition
public object Value { get; set; }

Property Value

object