Class CellTemplateEventArgs
Represents event arguments for the CellTemplateNeeded event.
Inheritance
System.Object
System.EventArgs
CellTemplateEventArgs
Inherited Members
System.EventArgs.Empty
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
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
|