Removes all actions from the ActionCollection.

Namespace: TallComponents.PDF.Layout.Actions
Assembly: TallComponents.PDF.Layout (in TallComponents.PDF.Layout.dll) Version: 3.0.63.0

Syntax

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

Examples

C#
CopyC#
ActionCollection actions = new ActionCollection();
actions.Add( new GoToAction( page ) );
actions.<b>Clear()</b>;
VB.NET
CopyC#
Dim actions as ActionCollection = new ActionCollection()
actions.Add( new GoToAction( page ) )
actions.<b>Clear()</b>

See Also