A bordered text box drawn on a page.

interface ITextBoxAnnotation {
    accessType?: LfRepositoryClientV2.AnnotationAccessControlType;
    borderColor?: string;
    borderStyle?: LfRepositoryClientV2.LineStyle;
    borderThickness?: number;
    comment?: string;
    coordinates?: LfRepositoryClientV2.AnnotationRectangle;
    createdTime?: Date;
    creator?: string;
    customData?: string;
    direction?: LfRepositoryClientV2.TextDirection;
    entryId?: number;
    fillColor?: string;
    isProtected?: boolean;
    isReadOnly?: boolean;
    itemId?: number;
    lastModifiedTime?: Date;
    opacity?: number;
    pageNumber?: number;
    reasonId?: number;
    text?: string;
    textSize?: number;
    visibility?: LfRepositoryClientV2.AnnotationVisibility;
    zOrder?: number;
}

Hierarchy (View Summary)

Implemented by

Properties

How the annotation participates in access control.

borderColor?: string

The border color as an RGB hex string; null if transparent.

The border stroke style.

borderThickness?: number

The border thickness in pixels.

comment?: string

An optional comment on the annotation.

The bounding rectangle of the text box.

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.

The reading direction of the text.

entryId?: number

The ID of the document entry the annotation belongs to.

fillColor?: string

The fill color as an RGB hex string; null if not filled.

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 text box as a percentage (0-100).

pageNumber?: number

The 1-based page number the annotation is on.

reasonId?: number

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

text?: string

The text displayed in the box.

textSize?: number

The font size of the text in points.

Controls who can see the annotation.

zOrder?: number

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