IsNumeric

判断该列是否是数值型,包括微整数、短整数、整数、长整数、单精度小数、双精度小数、高精度小数。

例如下面的代码列出订单表的所有数值型列:

Output.Show("订单表中的数值型列有:")
For
Each dc As DataCol In DataTables("订单").DataCols
    If
dc.IsNumeric
Then
        Output.Show(dc.Name)

    End
If
Next

 


本页地址:http://www.foxtable.com/webhelp/topics/0413.htm