IsString

判断该列是否是字符串型。

例如下面的代码列出了订单表的所有字符串型列:

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

    End
If
Next


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