FONT_NAMES_LOAD

FONT_NAMES_LOAD N

FILLS THE SYSTEM OBJECT NUMBER N WITH THE LIST OF THE AVAILABLE FONTS

  • Type: Command
  • Parameter: 1
  • Group: Font

ACTION

The command FONT_NAMES_LOAD N fills the system object designated by its number N with the list of the available fonts.

The system object is of type : MEMO, COMBO, LIST, DLIST.

SYNTAX: FONT_NAMES_LOAD N

  • N = system object number (integer or real). Must be greater than 0 and less than or equal to the allowed maximum number of system objects.

USE

  • The command FONT_NAMES_LOAD is used to fill a MEMO, a COMBO, a LIST, a DLIST with the list of fonts available in the computer.
  • As the list is added to existing lines of system object, it is recommended to CLEAR the content of the system object before adding the list.

ERROR

  • If number N is not a correct expression.
  • If number N exceeds the allowed maximum number of system objects.
  • If number N is not greater than 0.
  • If the system object number N does not exist.
  • If number N is not the number of : MEMO, COMBO, LIST, DLIST.

EXAMPLE

rem create a LIST

list 1

rem fill it with the list of the fonts

font_names_add 1

SEE ALSO

FONT_NAME

FONT_SIZE

FONT_COLOR

FONT_BOLD

FONT_BOLD_OFF

FONT_ITALIC

FONT_ITALIC_OFF

FONT_UNDERLINE

FONT_UNDERLINE_OFF

FONT_STRIKE

FONT_STRIKE_OFF

FONT_NAMES_ADD