This documentation is for the old version. Go to the latest Graphics Mill docs

Collection<T>.Remove Method

Removes the first occurrence of a specific item from the Collection<T>.

Namespace: Aurigma.GraphicsMill.AjaxControls.VectorObjects
Assembly: Aurigma.GraphicsMill.AjaxControls.VectorObjects (in Aurigma.GraphicsMill.AjaxControls.VectorObjects.dll)

Syntax

Visual Basic
Public Overridable Function Remove ( _
	item As T _
) As Boolean
C#
public virtual bool Remove(
	T item
)

Parameters

item

Type: T

The object to remove from the Collection<T>.

Return Value

The Boolean value which indicated whether the item was successfully removed from the collection. This method also returns false if the item is not found in the collection.

See Also

Reference