New HMG COMMAND: GET FONT TO
Posted: Thu Mar 09, 2017 11:02 pm
Hi HMG Development Team and others colleagues,
I found SET FONT TO very useful command to standardize FONT name and size in all controls that taking default one.
And when we change this default FONT, I would like to have it:
#xcommand GET FONT TO <aFont> ;
=> ;
<aFont> := \{ _HMG_SYSDATA \[ 342 \] , _HMG_SYSDATA \[ 343 \] \}
This command would it be useful to return the previous FONT configuration, as follows:
Is it feasible to have it at HMG? Would it be of common interest to all ?
I found SET FONT TO very useful command to standardize FONT name and size in all controls that taking default one.
And when we change this default FONT, I would like to have it:
#xcommand GET FONT TO <aFont> ;
=> ;
<aFont> := \{ _HMG_SYSDATA \[ 342 \] , _HMG_SYSDATA \[ 343 \] \}
This command would it be useful to return the previous FONT configuration, as follows:
Code: Select all
GET FONT TO aFont
SET FONT TO 'Courier', 10
... (returning after displaying then FONT coming back with the previous configuration)
SET FONT TO aFont[1], aFont[2]