The version of the document to load. Default is the latest version.
Example
fromgroupdocs.annotationimportAnnotatorfromgroupdocs.annotation.optionsimportLoadOptionsfromgroupdocs.annotation.modelsimportRectanglefromgroupdocs.annotation.models.annotation_modelsimportAreaAnnotationfromgroupdocs.pydrawingimportColordefload_password_protected_document():# Provide the password through LoadOptionsload_options=LoadOptions()load_options.password="secret"withAnnotator("./protected.docx",load_options=load_options)asannotator:area=AreaAnnotation()area.box=Rectangle(100,100,100,100)area.background_color=Color.yellow.to_argb()area.page_number=0area.message="Annotated a password-protected document"annotator.add(area)annotator.save("./output.docx")