Removes all actions from the ActionCollection.
Namespace: TallComponents.PDF.ActionsAssembly: TallComponents.PDF.Controls.WinForms (in TallComponents.PDF.Controls.WinForms.dll) Version: 2.0.46.0
Syntax
| C# |
|---|
public void Clear() |
| Visual Basic |
|---|
Public Sub Clear |
Examples
C#
CopyC#
VB.NET
CopyC#
ActionCollection actions = new ActionCollection(); actions.Add( new GoToAction( page ) ); actions.<b>Clear()</b>;
Dim actions as ActionCollection = new ActionCollection() actions.Add( new GoToAction( page ) ) actions.<b>Clear()</b>