Removes all actions from the ActionCollection.

Namespace: TallComponents.PDF.Actions
Assembly: TallComponents.PDF.Kit (in TallComponents.PDF.Kit.dll) Version: 3.0.69.1

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