gs_graphinfo.ado

来自「是一个经济学管理应用软件 很难找的 但是经济学学生又必须用到」· ADO 代码 · 共 26 行

ADO
26
字号
*! version 1.1.1  14nov2002
program gs_graphinfo, rclass
	version 8
	args name nothing
	if "`name'"=="" {
		di as err "nothing found where graph name expected"
		exit 198
	}
	if "`nothing'"!="" {
		error 198
	}
	gs_stat exists `name'

	ret local fn `name'
	ret local ft live
	ret local command `.`name'.command'
	ret local command_date `.`name'.date'
	ret local command_time `.`name'.time'
	ret local family `.`name'.graphfamily'
	ret local dtafile `.`name'.dta_file'
	ret local dtafile_date `.`name'.dta_date'
	ret local scheme `.`name'._scheme.scheme_name'
	ret local ysize `.`name'.style.declared_ysize.val'
	ret local xsize `.`name'.style.declared_xsize.val'
end

⌨️ 快捷键说明

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