Load document from local disk
Leave feedback
On this page
The following code snippet shows how to load documents from local disk:
using (Annotator annotator = new Annotator("source.docx"))
{
AreaAnnotation area = new AreaAnnotation()
{
Box = new Rectangle(100, 100, 100, 100),
BackgroundColor = 65535,
};
annotator.Add(area);
annotator.Save("result.pdf", new SaveOptions());
}
Was this page helpful?
Any additional feedback you'd like to share with us?
Please tell us how we can improve this page.
Thank you for your feedback!
We value your opinion. Your feedback will help us improve our documentation.