The property indicates whether editing of the shape in PowerPoint is forbidden. If True, shape editing is forbidden; by default False, the shape can be edited. (inherited from PresentationWatermarkBaseSlideOptions)
The property indicating whether the text watermark characters are mixed with unreadable characters. (inherited from PresentationWatermarkBaseSlideOptions)
Gets the default value for the class. (inherited from WatermarkOptions)
Example
importgroupdocs.watermarkasgwimportgroupdocs.watermark.watermarksasgwwimportgroupdocs.watermark.options.presentationasgwo_pptimportgroupdocs.watermark.contents.presentationasgwc_pptload_options=gw.PresentationLoadOptions()withgw.Watermarker("presentation.pptx",load_options)aswatermarker:watermark=gww.TextWatermark("Test watermark",gww.Font("Arial",8.0))content=watermarker.get_content(gwc_ppt.PresentationContent)note_opts=gwo_ppt.PresentationWatermarkNoteSlideOptions()note_opts.slide_index=0# index of the slide whose notes will receive the watermarkwatermarker.add(watermark,note_opts)