New to Telerik UI for WinFormsStart a free 30-day trial

Provides data for the CellValueNeeded event.

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.GridView.dll

Syntax:

C#
public class VirtualGridCellValueNeededEventArgs : VirtualGridCellEventArgs

Inheritance: objectEventArgsVirtualGridEventArgsVirtualGridCellEventArgsVirtualGridCellValueNeededEventArgs

Inherited Members VirtualGridCellEventArgs.RowIndexVirtualGridCellEventArgs.ColumnIndexVirtualGridEventArgs.ViewInfoEventArgs.Empty

Constructors

Initializes a new instance of the VirtualGridCellValueNeededEventArgs class.

C#
public VirtualGridCellValueNeededEventArgs(int rowIndex, int columnIndex, VirtualGridViewInfo viewInfo)
Parameters:rowIndexint

Index of the row.

columnIndexint

Index of the column.

viewInfoVirtualGridViewInfo

The view info.

Properties

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

C#
public string FieldName { get; set; }

Gets or sets the format string of the cell.

C#
public string FormatString { get; set; }

Gets or sets the value of the cell.

C#
public object Value { get; set; }