ASPxClientUtils.ArrayRemove(array, element) Method
In This Article
Removes the specified item from the specified array object.
#Declaration
TypeScript
static ArrayRemove(
array: any[],
element: any
): void
#Parameters
Name | Type | Description |
---|---|---|
array | any[] | An object that specifies the array to manipulate. |
element | any | An object that specifies the array item to remove. |
See Also