asp.net.ph

RepeaterItemCollection Constructor

System.Web.UI.WebControls Namespace   RepeaterItemCollection Class


Initializes a new instance of the RepeaterItemCollection class.

[ VB ]
Public Sub New ( _
   ByVal items As ArrayList _
)

[ C# ]
public RepeaterItemCollection (
   ArrayList items
);

[ C++ ]
public: RepeaterItemCollection (
   ArrayList* items
);

[ JScript ]
public function RepeaterItemCollection (
   items : ArrayList
);

Parameters

items
An ArrayList object that contains the items with which to initialize the collection.

Remarks

Use this constructor to initialize a new instance of the RepeaterItemCollection class.

Example

The following example demonstrates how to initialize a new instance of the RepeaterItemCollection class.

ArrayList myList = new ArrayList ( );
RepeaterItemCollection myItems = new RepeaterItemCollection ( myList );
  C# VB

See Also

RepeaterItemCollection Members   Repeater   ArrayList Skip Navigation Links




Previous page Back to top Next page

Check out related books at Amazon

© 2025 Reynald Nuñez and asp.net.ph. All rights reserved.

If you have any question, comment or suggestion
about this site, please send us a note