A sticky note placed on a page.

interface INoteAnnotation {
    accessType?: LfRepositoryClientV2.AnnotationAccessControlType;
    color?: string;
    comment?: string;
    createdTime?: Date;
    creator?: string;
    customData?: string;
    entryId?: number;
    isProtected?: boolean;
    isReadOnly?: boolean;
    itemId?: number;
    keepHistory?: boolean;
    lastModifiedTime?: Date;
    pageNumber?: number;
    position?: LfRepositoryClientV2.AnnotationPoint;
    reasonId?: number;
    text?: string;
    visibility?: LfRepositoryClientV2.AnnotationVisibility;
    zOrder?: number;
}

Hierarchy (View Summary)

Implemented by

Properties

How the annotation participates in access control.

color?: string

The background color of the note as an RGB hex string (for example, "#FFFF00"); null if transparent.

comment?: string

An optional comment on the annotation.

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.

keepHistory?: boolean

A boolean indicating whether the note keeps a revision history.

lastModifiedTime?: Date

The UTC time the annotation was last modified.

pageNumber?: number

The 1-based page number the annotation is on.

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

reasonId?: number

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

text?: string

The text content of the note.

Controls who can see the annotation.

zOrder?: number

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