home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Frozen Fish 1: Amiga
/
FrozenFish-Apr94.iso
/
bbs
/
alib
/
d9xx
/
d926
/
jcgraph.lha
/
JcGraph
/
Rexx
/
SizeY.rex
< prev
next >
Wrap
OS/2 REXX Batch file
|
1993-10-07
|
476b
|
20 lines
/* SizeY.rex */
/* --------- */
/* Description: Ask for Y axis font size and set it accordingly. No */
/* validation is done on the value entered , so, be */
/* careful. */
options results
address 'JCGRAPH'
'GetTypeValue 21'
FontSize=result
'requestnumber Enter Y axis font size please. Actual font size is:' FontSize
FontSize=result
if RC == 0 then do
'SetTypeValue 21 ' FontSize
end