Class CreatingVisualListItemEventArgs
Allows setting custom instances of the visual list items in RadListControl.
Inheritance
System.Object
System.EventArgs
CreatingVisualListItemEventArgs
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.WinControls.UI
Assembly: Telerik.WinControls.UI.dll
Syntax
public class CreatingVisualListItemEventArgs : EventArgs
Constructors
CreatingVisualListItemEventArgs()
Declaration
public CreatingVisualListItemEventArgs()
CreatingVisualListItemEventArgs(RadListDataItem, RadListVisualItem)
Declaration
public CreatingVisualListItemEventArgs(RadListDataItem dataItem, RadListVisualItem visualItem)
Parameters
RadListDataItem
dataItem
|
RadListVisualItem
visualItem
|
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 be used as visual representation. of the data items.
Declaration
public RadListVisualItem VisualItem { get; set; }
Property Value
RadListVisualItem
|