Products | Support | Email a link to this topic. | Send comments on this topic. | Back to Introduction - All Topics | Help Version 19.0.4.3
|
Leadtools.Documents Namespace > DocumentAnnotations Class : SetAnnotations Method |
public void SetAnnotations( AnnContainer[] containers )
'Declaration
Public Sub SetAnnotations( _ ByVal containers() As AnnContainer _ )
'Usage
Dim instance As DocumentAnnotations Dim containers() As AnnContainer instance.SetAnnotations(containers)
public void setAnnotations(AnnContainer[] containers)
public: void SetAnnotations( array<AnnContainer^>^ containers )
GetAnnotations and SetAnnotations can be used to get or set an array of annotations container objects for all pages with a single call. Since the annotations can be stored in a stand-alone file, calling these optimized methods can be a lot faster than iterating through each page and calling DocumentPage.GetAnnotations or DocumentPage.SetAnnotations multiple times.
containers must contain an AnnContainer object for each page in the document to be updated. This method uses the value of AnnContainer.PageNumber to update the corresponding page(s) in the document. Any item that is null will be ignored.
The LEADTOOLS Document Viewer library uses GetAnnotations to obtain the annotation container objects for all pages at once instead of calling individual DocumentPage.GetAnnotations when a new document is loaded in the viewer. And will call SetAnnotations passing any annotation container that has changed by the user instead of DocumentPage.SetAnnotations in preparations for sending the document to the converter for saving.