天软金融分析.NET函数大全 > TSL函数 > 基础函数 > 数组 > 基本

FieldCount    

简述
数据表字段个数。如果t不是一个数据表,则返回0
定义
FieldCount(t:Array):Integer
参数
名称类型说明
TArray数据表
返回Integer数据表字段个数
  • 范例


    t1:=array(('a':1,'b':4),('a':7,'b':8),('a':2,'b':3));
    return FieldCount(t1);
    //结果:2
相关