📄 graph_display.dlg
字号:
/*
graph display
*! VERSION 1.1.3 06apr2005
*/
VERSION 9.0
INCLUDE graph_header
INCLUDE _std_medium
INCLUDE _ht260
INCLUDE header
HELP hlp1, view("help graph_display")
RESET res1
DIALOG main, label("graph display - Display graph") tabtitle("Main")
BEGIN
TEXT tx_memgr _lft _top _vnwd ., ///
label("Graph name:")
COMBOBOX cb_memgr @ _ss @ ., ///
label("Graph name") ///
dropdown contents(graphs)
TEXT tx_scheme _lft _ls _iwd _ht2, ///
label("Scheme:")
COMBOBOX cb_scheme @ _ss _vnwd ., ///
label("New scheme") option(scheme) dropdownlist ///
contents(schemes)
GROUPBOX gb_opt _lft _xls _iwd _ht7, ///
label("Options")
TEXT tx_height _indent _ss _txwd ., ///
label("Height:") right
DEFINE holdx @x
EDIT en_height _txsep @ _en7wd ., ///
label("Height") numonly option(ysize)
TEXT tx_margin _ilft2b4_2g @ _txwd ., ///
label("Margin:") right
COMBOBOX cb_margin _txsep @ _vnwd ., ///
label("Margin") contents(margin) option(margin) dropdownlist
TEXT tx_width holdx _ms _txwd ., ///
label("Width:") right
EDIT en_width _txsep @ _en7wd ., ///
label("Width") numonly option(xsize)
TEXT tx_note _ilft _ms _ibwd ., ///
label("Height and Width are in inches.")
END
PROGRAM command
BEGIN
put "graph display "
require main.cb_memgr
put main.cb_memgr
beginoptions
optionarg main.en_height
optionarg main.en_width
optionarg main.cb_margin
optionarg main.cb_scheme
endoptions
END
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -