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

📄 _get_offopt.ado

📁 是一个经济学管理应用软件 很难找的 但是经济学学生又必须用到
💻 ADO
字号:
*! version 1.0.0  03jan2005
program _get_offopt, sclass
	version 9

	sreturn clear
	if (`"`0'"' == "") exit

	local len0 = length(trim(`"`0'"'))
	if substr("`0'",1,3) == "ln(" {
		local offopt = substr("`0'",4,`=`len0'-4')
		capture confirm name `offopt'
		if c(rc) {
			exit
		}
		confirm numeric variable `offopt'
		sreturn local offopt exposure(`offopt')
		sreturn local offvar `offopt'
	}
	else {
		capture confirm name `0'
		if c(rc) {
			exit
		}
		confirm numeric variable `0'
		sreturn local offopt offset(`0')
		sreturn local offvar `0'
	}
end
exit

⌨️ 快捷键说明

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