GetAccount 取账户名
来自tradeStar帮助系统
(版本间的差异)
(以“{| class="wikitable" |- |函数 || GetAccoun |- | 别名 || 取账户名 |- | 所属类别|| 交易账户函数 |- | 参数数量 || 1 |- | 运行模式|| 逐根 |-...”为内容创建页面) |
2013年6月19日 (三) 14:57的最后版本
函数 | GetAccoun |
别名 | 取账户名 |
所属类别 | 交易账户函数 |
参数数量 | 1 |
运行模式 | 逐根 |
说明 | 返回账户列表中指定位置的某个账户名 |
用法 | GetAccount(AccountLoc)
返回账户列表中指定位置的某个账户名 该函数可与GetNumAccounts函数一起用于遍历账户 AccountLoc是介于1和GetNumAccounts之间的整数 该函数不能用于测评 例如: variable: str(); for i:=1 to GetNumAccounts do begin str := GetAccount(i); end; |