DataList.InitializeItem(DataListItem) Method

Definition

Initializes a DataListItem object based on the specified templates and styles for the list-item type.

protected:
 virtual void InitializeItem(System::Web::UI::WebControls::DataListItem ^ item);
protected virtual void InitializeItem (System.Web.UI.WebControls.DataListItem item);
abstract member InitializeItem : System.Web.UI.WebControls.DataListItem -> unit
override this.InitializeItem : System.Web.UI.WebControls.DataListItem -> unit
Protected Overridable Sub InitializeItem (item As DataListItem)

Parameters

item
DataListItem

The DataListItem to initialize.

Remarks

The InitializeItem method is used primarily by control developers to extend the DataList control.

The CreateControlHierarchy method uses the CreateItem and InitializeItem methods to create DataListItem controls that represent the header, footer, separator, and data-bound items contained in the data list. You can access the data-bound items for the data list through the Items collection. You can access all item types, including the header, footer, and separator items, through the Controls collection.

Override the CreateControlHierarchy method to customize how DataListItem controls are created or added to the DataList control. Override the InitializeItem method to customize templates for a DataListItem control.

Applies to

See also