📄 loggraph_g.class
字号:
// loggraph_g
//
// Base class for graphs that push all creation commands onto a log and
// then run that log.
*! version 1.0.0 25oct2002
version 8
class {
} , inherit(graph_g)
// ---------------------------------------------------------------------------
// .new
//
// Creates a graph.
//
// Handles whether reading from a log. Does not use the mechanism of
// graph_g.class.
program new
.Super.new
._scheme.ref = .`c(curscm)'.ref // declare local scheme
capture syntax [ , READLOG(string) * ]
if "`readlog'" != "" { // reading from a file
.runfromfile `readlog'
exit
}
.parse `0'
end
// ---------------------------------------------------------------------------
program parse_omit , rclass
syntax [ , OMITANYMiss OMITALLMiss OMITDUPmiss OMITNothing * ]
return local rest `"`options'"'
class exit "`omitanymiss' `omitallmiss' `omitdupmiss' `omitnothing'"
end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -