ClientScriptItemCollection(ClientScriptItem[]) Constructor
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.
Initializes a new instance of the ClientScriptItemCollection class.
public:
ClientScriptItemCollection(cli::array <System::Web::UI::Design::ClientScriptItem ^> ^ clientScriptItems);
public ClientScriptItemCollection (System.Web.UI.Design.ClientScriptItem[] clientScriptItems);
new System.Web.UI.Design.ClientScriptItemCollection : System.Web.UI.Design.ClientScriptItem[] -> System.Web.UI.Design.ClientScriptItemCollection
Public Sub New (clientScriptItems As ClientScriptItem())
Parameters
- clientScriptItems
- ClientScriptItem[]
An array of ClientScriptItem elements used to initialize the collection.
Remarks
If clientScriptItems
is null
(Nothing
in Visual Basic) or does not contain any elements, the constructor initializes an empty ClientScriptItemCollection object. Otherwise, the items in the clientScriptItems
array are used to set the items for the ClientScriptItemCollection.
The ClientScriptItemCollection constructor is typically used in classes that are derived from the WebFormsRootDesigner class. Visual designers implement the GetClientScriptsInDocument method to return a ClientScriptItemCollection object for the client script elements in a Web document at design time.