⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 _gs_parse_and_log_lines.ado

📁 是一个经济学管理应用软件 很难找的 但是经济学学生又必须用到
💻 ADO
字号:
*! version 1.0.3  25sep2003

// ---------------------------------------------------------------------------
//  Parse x and y line options and push edits to create the lines and the look
//  onto the specified log.
//
//	Usage:  ._gs_parse_and_log_lines log ord axnm   
//		<settings and options>
//
//  where ord is "x" or "y"

program _gs_parse_and_log_lines
	gettoken log     0 : 0
	gettoken ord     0 : 0
	gettoken axnm    0 : 0
	gettoken datesok 0 : 0

	syntax anything [ , STyle(string)				///
		   NOEXtend EXtend					///
		   LSTyle(string) LColor(string)			///
		   LWidth(string) LPattern(string)			///
		   AXis(passthru) ]		
		   					// axis ignored

	capture numlist `"`anything'"'
	local numlist `r(numlist)'
	local rc = _rc
	if `rc' & "`datesok'" != "" {
		capture _confirm_number_or_date `anything'
		local numlist `"`anything'"'
		local rc = _rc
	}
	if `rc' {
		di as error `"invalid line argument, `anything'"'
		exit 198
	}

						// create one style used by
						// ref for all the lines


	local eds      `"`style'"'				// overall edits

	if "`noextend'" != "" {
		local eds `"`eds' extend_low(no) extend_high(no)"'
	}
	if "`extend'" != "" {
		local eds `"`eds' extend_low(yes) extend_high(yes)"'
	}

	local line_eds `"`lstyle'"'				// line edits

	if `"`lcolor'"' != `""' {
		local line_eds `"`line_eds' color(`lcolor')"'
	}
	if `"`lwidth'"' != `""' {
		local line_eds `"`line_eds' width(`lwidth')"'
	}
	if `"`lpattern'"' != `""' {
		local line_eds `"`line_eds' pattern(`lpattern')"'
	}

	if `"`line_eds'"' != `""' {
		local eds `"`eds' linestyle(`line_eds')"'
	}

	.`log'.Arrpush tempname glsty			// common style
	.`log'.Arrpush .\`glsty' = .gridlinestyle.new, style(scheme)
	if `"`eds'"' != `""' {
		.`log'.Arrpush .\`glsty'.editstyle `eds' editcopy
	}


							// create the lines
	local numlist : list uniq numlist
	while `"`numlist'"' != "" {
		gettoken z numlist : numlist , match(par)
		if "`datesok'" != "" {
			gettoken test : z, parse("()") match(par)
			if "`par'" != "" {
				local z `"(`test')"'
			}
			else	local z `"(`z')"'
		}
		.`log'.Arrpush .`axnm'.plotregion.declare_xyline 	///
			.gridline_g.new `z' , ordinate(`ord')	///
			plotregion(\`.`axnm'.plotregion.objkey')	///
			styleref(\`glsty') `datesok'
	}

end

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -