"getFont"

Gets the font for an item.

Synopsis

shape.getFont(string id, int column);

Parameters

Parameter Description
shape Name of the object
Id The ID of the item
column The number of the column

Description

Gets the font for an item.

Example

The following example gets the font for the item "PART1".

main()
{
  string font = TREE1.getFont("PART1",0);
  DebugN("Font: " + font);
}

Assignment

Tree widget