IsBoolean
判断该列是否是逻辑型。
例如下面的代码列出了订单表的所有逻辑型列:
Output.Show(
"订单表中的 逻辑型列有:"
)
For
Each
dc
As
DataCol
In
DataTables
(
"订单"
).DataCols
If
dc.IsBoolean
Then
Output.Show(dc.Name)
End
If
Next
本页地址:
http://www.foxtable.com/webhelp/topics/0416.htm