RepeaterItem.DataItem Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets a data item associated with the RepeaterItem object in the Repeater control.
public:
virtual property System::Object ^ DataItem { System::Object ^ get(); void set(System::Object ^ value); };
public virtual object DataItem { get; set; }
member this.DataItem : obj with get, set
Public Overridable Property DataItem As Object
Property Value
A Object that represents a data item in the Repeater control.
Remarks
Use the DataItem property to specify or determine the properties of a data item associated with the RepeaterItem object in the Repeater control.
Note
This property only applies to data items in the Repeater control. The ItemType property must be set to ListItemType.Item
, ListItemType.AlternatingItem
, ListItemType.SelectedItem
, or ListItemType.EditItem
.