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

XmpArrayNode.Clear Method

Sets all elements in the array to zero, to false, or to a null reference (Nothing in Visual Basic), depending on the element type.

Namespace: Aurigma.GraphicsMill.Codecs
Assembly: Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)

Syntax

Visual Basic
Public Sub Clear
C#
public void Clear()

Implements

IList.Clear()

Remarks

Reference-type elements are set to a null reference (Nothing in Visual Basic). Boolean-type elements are set to false. Other value-type elements are set to zero.

This method only clears the values of the elements; it does not delete the elements themselves.

See Also

Reference