ShowNote Interface

Describes a show note item

interface ShowNote
{
    backgroundColor: number;
    bold: boolean;
    fixedPitch: boolean;
    fontSize: number;
    hidden: boolean;
    imageUrl: string;
    imageScale: number;
    imageWidth: number;
    imageHeight: number;
    text: string;
    textAlign: ShowNoteTextAlignment;
    textColor: number;
}

#backgroundColor

Background color (0 - 15)

backgroundColor: number;

#bold

Bold font

bold: boolean;

#fixedPitch

Fixed pitch font

fixedPitch: boolean;

#fontSize

Font size

fontSize: number;

#hidden

True if the show note is currently hidden

hidden: boolean;

#imageHeight

Height of the image in pixels

imageHeight: number;

#imageScale

How much to scale the image by (0.0 - 1.0)

imageScale: number;

#imageUrl

URL to retrieve the note's background image (or null)

imageUrl: string;

#imageWidth

Width of the image in pixels

imageWidth: number;

#text

The show note's text

text: string;

#textAlign

Text alignment

textAlign: ShowNoteTextAlignment;

#textColor

Text color (0 - 15)

textColor: number;