📄 twoway_rbarm_parse.class
字号:
// twoway_rbarm_parse
//
// Parser for rbarm (marker sized bar) views.
*! version 1.0.0 23oct2002
class {
// barwidth = -1
} , inherit(twoway_y2xview_parse)
// ---------------------------------------------------------------------------
program parse
if "`.viewtype'" == "" {
.viewtype = "rbarm"
}
.Super.parse `0'
/* moved to twoway_y2xview_parse
local 0 `", `.options'"'
syntax [ , BARWidth(real -1) * ]
.barwidth = `barwidth'
.options = `"`options'"'
*/
end
/* moved to twoway_y2xview_parse
// ---------------------------------------------------------------------------
// Pushes onto the specified log any post-creation commands implied by
// the parsed syntax that must be applied to the created view.
program log_edits
args log view i
.Super.log_edits `log' `view' `i'
if `.barwidth' != -1 {
.`log'.Arrpush .`view'.bar_size = `.barwidth'
}
end
*/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -