interface PlainTextData {
    backgroundColor: number;
    charSize: IDimension;
    foregroundColor: number;
    height: number;
    left: number;
    text: string;
    top: number;
    width: number;
}

Properties

backgroundColor: number

the index into the global color table for the background color of the text

charSize: IDimension

the size (in pixels) of each cell (character) in text grid

foregroundColor: number

the index into the global color table for the foreground color of the text

height: number

the height of the text grid (in pixels)

left: number

the position of the left edge of text grid (in pixels) within the GIF (from the left edge)

text: string

the text to render on screen

top: number

the position of the top edge of text grid (in pixels) within the GIF (from the top edge)

width: number

the width of the text grid (in pixels)