PasteCopiedAnnotations Method

PDFTron SilverDox SDK

Collapse imageExpand ImageCopy imageCopyHover image
Creates copies of the annotations copied using the CutSelectedAnnotations()()()() or CopySelectedAnnotations()()()() methods onto the document

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

Syntax

C#
public IEnumerable<Annotation> PasteCopiedAnnotations(
	Nullable<int> newPageNumber
)
Visual Basic
Public Function PasteCopiedAnnotations ( _
	newPageNumber As Nullable(Of Integer) _
) As IEnumerable(Of Annotation)
Visual C++
public:
IEnumerable<Annotation^>^ PasteCopiedAnnotations(
	Nullable<int> newPageNumber
)

Parameters

newPageNumber
Type: System..::..Nullable<(Of <(<'Int32>)>)>
The new page number of the annotation; if this is null, the page number of the original annotation will be used. Default value is null.

Return Value

List of newly created annotations. Return value is null if no annotations has been copied

See Also