Class CreatingVisualListItemEventArgs
Provides data for the CreatingVisualListItem event, allowing customization of visual list item creation.
Inheritance
Inherited Members
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.UI.dll
Syntax
public class CreatingVisualListItemEventArgs : EventArgs
Constructors
CreatingVisualListItemEventArgs()
Initializes a new instance of the CreatingVisualListItemEventArgs class.
Declaration
public CreatingVisualListItemEventArgs()
CreatingVisualListItemEventArgs(RadListDataItem, RadListVisualItem)
Initializes a new instance of the CreatingVisualListItemEventArgs class with the specified data item and visual item.
Declaration
public CreatingVisualListItemEventArgs(RadListDataItem dataItem, RadListVisualItem visualItem)
Parameters
RadListDataItem
dataItem
The RadListDataItem for which a visual item is being created. |
RadListVisualItem
visualItem
The RadListVisualItem being created. |
Properties
DataItem
Gets the data item for which a virtualized visual element is being created.
Declaration
public RadListDataItem DataItem { get; }
Property Value
RadListDataItem
|
VisualItem
Gets or sets the custom visual list item that will provide the visual representation for the data item.
Declaration
public RadListVisualItem VisualItem { get; set; }
Property Value
RadListVisualItem
|