A placement of a catalog stamp on a page. The stamp image itself is defined by the catalog entry referenced by StampId.

interface IStampAnnotation {
    accessType?: LfRepositoryClientV2.AnnotationAccessControlType;
    color?: string;
    comment?: string;
    coordinates?: LfRepositoryClientV2.AnnotationRectangle;
    createdTime?: Date;
    creator?: string;
    customData?: string;
    entryId?: number;
    isProtected?: boolean;
    isReadOnly?: boolean;
    itemId?: number;
    lastModifiedTime?: Date;
    opacity?: number;
    pageNumber?: number;
    position?: LfRepositoryClientV2.AnnotationPoint;
    reasonId?: number;
    rotation?: number;
    stampId?: number;
    visibility?: LfRepositoryClientV2.AnnotationVisibility;
    zOrder?: number;
}

Hierarchy (View Summary)

Implemented by

Properties

How the annotation participates in access control.

color?: string

The render color of the stamp as an RGB hex string (for example, "#000000"); null if transparent.

comment?: string

An optional comment on the annotation.

The rectangle the stamp is drawn into.

createdTime?: Date

The UTC time the annotation was created.

creator?: string

The security identifier (SID) of the user that created the annotation.

customData?: string

Optional application-defined custom data stored with the annotation.

entryId?: number

The ID of the document entry the annotation belongs to.

isProtected?: boolean

A boolean indicating whether the annotation is protected so that only its creator can modify it.

isReadOnly?: boolean

A boolean indicating whether the annotation is read-only (for example, on an archived version).

itemId?: number

The identifier of the annotation, unique within its page.

lastModifiedTime?: Date

The UTC time the annotation was last modified.

opacity?: number

The opacity of the stamp as a percentage (0-100).

pageNumber?: number

The 1-based page number the annotation is on.

The top-left position of the stamp on the page.

reasonId?: number

The ID of the redaction reason associated with the annotation, if any.

rotation?: number

The clockwise rotation of the stamp in degrees (0-359).

stampId?: number

The ID of the catalog stamp placed; 0 when the stamp carries its own inline bitmap.

Controls who can see the annotation.

zOrder?: number

The z-order of the annotation; higher values draw on top.