RemoveAnnotations Method

PDFTron SilverDox SDK

Collapse imageExpand ImageCopy imageCopyHover image
Removes the specified list of annotations.

Namespace: PDFTron.SilverDox.Documents.Annotations
Assembly: SilverDox (in SilverDox.dll) Version: 1.2.4413.29010

Syntax

C#
public void RemoveAnnotations(
	IEnumerable<Annotation> annotations
)
Visual Basic
Public Sub RemoveAnnotations ( _
	annotations As IEnumerable(Of Annotation) _
)
Visual C++
public:
void RemoveAnnotations(
	IEnumerable<Annotation^>^ annotations
)

Parameters

annotations
Type: System.Collections.Generic..::..IEnumerable<(Of <(<'Annotation>)>)>
The list of annotations to be removed.

Remarks

Use this method instead of RemoveAnnotation(Annotation) if you want Undo()()()() to revert back the deletion of a group of annotations at once.

See Also