GetRuntimeInteger()
语法
Result = GetRuntimeInteger(Object$)概要
Returns the integer value of the runtime object. If the runtime object is a procedure, it returns the procedure address.
参数
Object$ Name of the object to get the value from. The following objects are supported:
- Variable: the object name is 'VariableName' (case insensitive).
- Constant: the object name is '#Constantame' (case insensitive).
- Procedure: the object name is 'ProcedureName()' (case insensitive).
When accessing public module items, the module prefix name is mandatory, even if UseModule is used.
返回值
Returns the integer value of specified object, or zero if not found. As zero is a valid integer value, IsRuntime() can be used to determine if the runtime object really exists. If the variable is of float or double type, it is automatically converted to integer. If the runtime object is a procedure, it returns the procedure address.
参阅
SetRuntimeInteger(), IsRuntime()
已支持操作系统
所有