LoadEmbeddedAnnotations Property (original) (raw)

Summary

Tries to load the annotations embedded in the document.

Syntax

public bool LoadEmbeddedAnnotations {get; set;} 

public: property bool LoadEmbeddedAnnotations { bool get() void set(bool value) }

public boolean getLoadEmbeddedAnnotations() public void setLoadEmbeddedAnnotations(boolean value)

Property Value

true to try to load the annotations embedded in the document; otherwise, false. Default value is false.

Remarks

Some document formats such as PDF and TIF support embedded annotations inside the document file itself. Set the value of LoadEmbeddedAnnotations to true to try to read these annotations when loading a document. This will not cause an error if the format does not support embedded annotations or if the file does not contain any.

If the annotations are stored in an external file, then use AnnotationsUri instead. Note that if you setAnnotationsUri to a value (not null) then LoadEmbeddedAnnotations will be ignored and the framework will not try to load any embedded annotations even if they exist.

The value of RenderAnnotations controls what happens to the annotations:

RenderAnnotations is not used if LoadEmbeddedAnnotations is false.

Refer to Loading Documents using Leadtools.Document for detailed information.