PDFKit.NET 2.0 Class Library (.NET 2.0)

ActionCollection.Clear Method 

Removes all actions from the ActionCollection.

public void Clear();

Example

C#

ActionCollection actions = new ActionCollection();
actions.Add( new GoToAction( page ) );
actions.Clear();
VB.NET
Dim actions as ActionCollection = new ActionCollection()
actions.Add( new GoToAction( page ) )
actions.Clear()

See Also

ActionCollection Class | TallComponents.PDF.Actions Namespace