A freehand-drawn multi-point line on a page.

interface IFreeHandAnnotation {
    accessType?: AnnotationAccessControlType;
    color?: string;
    comment?: string;
    createdTime?: Date;
    creator?: string;
    customData?: string;
    entryId?: number;
    isProtected?: boolean;
    isReadOnly?: boolean;
    itemId?: number;
    lastModifiedTime?: Date;
    lineStyle?: LineStyle;
    opacity?: number;
    pageNumber?: number;
    points?: AnnotationPoint[];
    reasonId?: number;
    thickness?: number;
    visibility?: AnnotationVisibility;
    zOrder?: number;
}

Hierarchy (View Summary)

Implemented by

Properties

How the annotation participates in access control.

color?: string

The stroke color as an RGB hex string; 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.

lastModifiedTime?: Date

The UTC time the annotation was last modified.

lineStyle?: LineStyle

The stroke style.

opacity?: number

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

pageNumber?: number

The 1-based page number the annotation is on.

points?: AnnotationPoint[]

The ordered points of the freehand stroke.

reasonId?: number

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

thickness?: number

The stroke thickness in pixels.

Controls who can see the annotation.

zOrder?: number

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