JavaScript.ClientEventCollection
Wisej.Web.JavaScript ClientEventCollection
Last updated
Wisej.Web.JavaScript ClientEventCollection
Last updated
Namespace: Wisej.Web
Assembly: Wisej.Framework (3.2.0.0)
Represents a collection of JavaScript events and their corresponding handler code.
Int32: Returns the number of items in the collection.
ClientEvent: Returns the ClientEvent element at the specified index .
Adds the ClientEvent instance to the collection.
Parameter | Type | Description |
---|---|---|
item | ClientEvent item to add to the collection. |
Removes all the ClientEvent items from the collection.
Checks whether the specified item exists in the collection.
Parameter | Type | Description |
---|---|---|
item | ClientEvent items to find in the collection. |
Returns: Boolean. True of the collection contains the specified item .
Returns the position of the specified item in the collection.
Parameter | Type | Description |
---|---|---|
item | ClientEvent item to locate in the collection. |
Returns: Int32. The index of the specified item or -1 if not found.
Inserts the item into the collection at the specified index .
Parameter | Type | Description |
---|---|---|
index | Position where to insert the item . | |
item | ClientEvent item to insert into the collection. |
Removes the item from the collection.
Parameter | Type | Description |
---|---|---|
item | ClientEvent instance to remove from the collection. |
Returns: Boolean. True of the specified item was found and removed from the collection.
Removes the ClientEvent item at the location index .
Parameter | Type | Description |
---|---|---|
index | Position of the item to remove from the collection. |
CollectionChangeEventHandler Fired when the collection has changed.