Represents a watermark associated with a tag defintion.

interface ITagDefinitionWatermark {
    isMandatory?: boolean;
    opacity?: number;
    pageSpanPercentage?: number;
    position?: LfRepositoryClientV2.WatermarkPosition;
    rotationAngle?: number;
    text?: string;
}

Implemented by

Properties

isMandatory?: boolean

A boolean indicating whether or not the watermark associated with the tag is mandatory.

opacity?: number

The opacity of the watermark associated with the tag definition. Valid value ranges from 0 to 100, with -1 as the default values.

pageSpanPercentage?: number

The percentage of the page that the watermark associated with the tag definition spans on.

The position of the watermark on the page.

rotationAngle?: number

The rotation angle, in degrees, of the watermark associated with the tag definition.

text?: string

The watermark text associated with the tag defintion.