Class CellTemplateEventArgs
Represents event arguments for the CellTemplateNeeded event.
Inheritance
System.Object
CellTemplateEventArgs
Namespace: Telerik.Windows.Controls.VirtualGrid
Assembly: Telerik.Windows.Controls.VirtualGrid.dll
Syntax
public class CellTemplateEventArgs : EventArgs
Constructors
CellTemplateEventArgs()
Declaration
public CellTemplateEventArgs()
Properties
ColumnIndex
Gets the index of the column.
Declaration
public int ColumnIndex { get; }
Property Value
System.Int32
|
DataItem
Gets the object that represents the row in case a DataProvider is used, otherwise its null.
Declaration
public object DataItem { get; }
Property Value
System.Object
|
DataTemplate
Gets or sets the DataTemplate.
Declaration
public DataTemplate DataTemplate { get; set; }
Property Value
System.Windows.DataTemplate
|
RowIndex
Gets the index of the row.
Declaration
public int RowIndex { get; }
Property Value
System.Int32
|