WordProcessingLoadOptions class

WordProcessingLoadOptions class

Represents document loading options for a Word document.

The WordProcessingLoadOptions type exposes the following members:

Constructors

Constructor Description
init Initializes a new instance of the WordProcessingLoadOptions class.
init Initializes a new instance of the WordProcessingLoadOptions class with a specified password.

Properties

Property Description
file_type The file type, indicating its format (e.g., docx, pdf, xlsx, etc.). (inherited from LoadOptions)
format_family The format family of the document, indicating its type (e.g., Image, Pdf, Spreadsheet, etc.). (inherited from LoadOptions)
password The password for opening an encrypted document. (inherited from LoadOptions)

Fields

Field Description
DEFAULT Gets the default value for the class.

Example

import groupdocs.watermark as gw
import groupdocs.watermark.contents.wordprocessing as gwc_wp

load_options = gw.WordProcessingLoadOptions()
with gw.Watermarker("document.docx", load_options) as watermarker:
    content = watermarker.get_content(gwc_wp.WordProcessingContent)
    # perform operations on the document, e.g., unprotect, edit shapes, etc.
    watermarker.save("document.docx")

See Also