WordProcessingWatermarkSectionOptions class
Leave feedback
On this page
Represents options when adding shape watermark to a Word document section.
Learn more:
- Add watermarks to word processing documents (https://docs.groupdocs.com/display/watermarknet/Add+watermarks+to+word+processing+documents)
The WordProcessingWatermarkSectionOptions type exposes the following members:
| Constructor | Description |
|---|---|
| init | Initializes a new instance of the WordProcessingWatermarkSectionOptions class. |
| Property | Description |
|---|---|
| section_index | The index of a section to add the watermark to. |
| alternative_text | The descriptive (alternative) text that will be associated with a shape. (inherited from WordProcessingWatermarkBaseOptions) |
| effects | The effects to apply to the watermark, specified as a WordProcessingImageEffects or WordProcessingTextEffects instance. (inherited from WordProcessingWatermarkBaseOptions) |
| is_locked | The property indicates whether editing of the shape in Word is forbidden. (inherited from WordProcessingWatermarkBaseOptions) |
| lock_type | The watermark lock type. (inherited from WordProcessingWatermarkBaseOptions) |
| name | The name of the shape. (inherited from WordProcessingWatermarkBaseOptions) |
| password | The password used to lock the watermark. (inherited from WordProcessingWatermarkBaseOptions) |
| Field | Description |
|---|---|
| DEFAULT | Gets the default value for the class. (inherited from WatermarkOptions) |
import groupdocs.watermark as gw
import groupdocs.watermark.watermarks as gww
import groupdocs.watermark.options.wordprocessing as gwo_wp
load_options = gw.WordProcessingLoadOptions()
with gw.Watermarker("document.docx", load_options) as watermarker:
watermark = gww.TextWatermark("Test watermark", gww.Font("Arial", 19.0))
options = gwo_wp.WordProcessingWatermarkSectionOptions()
options.section_index = 0
watermarker.add(watermark, options)
watermarker.save("document.docx")
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.