📄 _coef_table_common_report_pr.idlg
字号:
/*
_coef_table_common_report_pr.idlg
*! VERSION 1.0.0 13oct2004
To be included within a DIALOG.
*/
PROGRAM check_table
BEGIN
if report.ck_notable {
call gaction report.ck_noheader.disable
call gaction report.ck_nolegend.disable
call gaction report.ck_verbose.disable
}
if !report.ck_notable {
call gaction report.ck_noheader.enable
call program check_legend
call program check_header
}
END
PROGRAM check_header
BEGIN
if report.ck_noheader {
call gaction report.ck_nolegend.disable
call gaction report.ck_verbose.disable
}
if !report.ck_noheader {
call gaction report.ck_nolegend.enable
call program check_legend
}
END
PROGRAM check_legend
BEGIN
if report.ck_nolegend {
call gaction report.ck_verbose.disable
}
if !report.ck_nolegend {
call gaction report.ck_verbose.enable
}
END
PROGRAM _coef_table_common_cmd
BEGIN
option report.ck_notable
option report.ck_noheader
option report.ck_nolegend
option report.ck_verbose
END
/* END: _coef_table_common_report_pr.idlg */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -