hiGetFont
hiGetFont(S_fontType) =>t_fontType/l_fontList/nil
Description
Returns the font type (if valid), or a list of valid font types if t_fontType is all. This function is being provided for compatibility with previous releases and should no longer be used.
Argument
|
One of the following as a string or symbol:
' |
Values Returned
|
The list of valid font types (string) if the argument is " |
|
|
The font type is not one of “ |
Examples
hiGetFont('text)
=> "text"
hiGetFont("label")
=> "label"
hiGetFont('notafont)
=> nil
hiGetFont("all")
=> ("label" "text" "ciw")
Related Topics
Return to top