DiagramWatermarkOptions

Inheritance: java.lang.Object, com.groupdocs.watermark.options.WatermarkOptions

public abstract class DiagramWatermarkOptions extends WatermarkOptions

Base class for watermark adding options to a Visio document.

Methods

Method Description
isLocked() Gets a value indicating whether an editing of the shape in Visio is forbidden.
setLocked(boolean value) Sets a value indicating whether an editing of the shape in Visio is forbidden.

isLocked()

public final boolean isLocked()

Gets a value indicating whether an editing of the shape in Visio is forbidden.

Returns: boolean - If the value is true, shape editing will be forbidden.


By default, the value is false, the shape can be edited in Visio.

setLocked(boolean value)

public final void setLocked(boolean value)

Sets a value indicating whether an editing of the shape in Visio is forbidden.

Parameters:

Parameter Type Description
value boolean If the value is true, shape editing will be forbidden.

By default, the value is false, the shape can be edited in Visio. |