📄 _fr_textbox_parse_and_log.ado
字号:
*! version 1.0.0 06sep2002
// Parses options for a textbox and its associated style and posts those edits
// of the specified textbox to the specified log.
program _fr_textbox_parse_and_log , rclass
gettoken log 0 : 0
gettoken tbox 0 : 0
syntax [ , ORIENTation(string) DRAWVIEW(string) ///
XOFFSET(real -99999) YOFFSET(real -99999) ///
* ]
// object edits
if `"`orientation'"' != `""' {
.`log'.Arrpush .`tbox'._set_orientation `orientation'
}
if `"`drawview'"' != `""' {
.`log'.Arrpush .`tbox'.draw_view.setstyle, style(`drawview')
}
if `xoffset' != -99999 {
.`log'.Arrpush .`tbox'.xoffset = `xoffset'
}
if `yoffset' != -99999 {
.`log'.Arrpush .`tbox'.yoffset = `yoffset'
}
_fr_tbstyle_parse_and_log `log' `tbox'.style "" , `options'
return local rest `"`r(rest)'"'
end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -