interface JTextAnnotationStyle {
    bold: boolean;
    createdBy: string;
    creationDate: string;
    description?: string;
    id: string;
    italic: boolean;
    lastModificationDate: string;
    lastModifiedBy: string;
    name: string;
    organizationId: string;
    outlineColor: undefined | string;
    tags: JTag[];
    textColor: string;
    transparency: number;
    type: "TEXT";
    typeface: JTYPEFACE;
}

Hierarchy (view full)

Properties

bold: boolean
createdBy: string
creationDate: string
description?: string
id: string
italic: boolean
lastModificationDate: string
lastModifiedBy: string
name: string
organizationId: string
outlineColor: undefined | string
tags: JTag[]
textColor: string
transparency: number
type: "TEXT"
typeface: JTYPEFACE