ZeroExtend property: File class
Description
Use this property to specify whether or not the WriteRowset method zero-extends the value it writes for decimal fields for CSV or XML format files.
For example, for a decimal field defined as 6.3, the value 1.12 will be written as follows depending on the value of ZeroExtend:
True: 1.120
False: 1.12
This property takes a Boolean value: true if WriteRowset zero-extends the value it writes; false otherwise. The default value is true.
Note:
This property has no effect in the case of a fixed-position format file. In addition, it does not affect the behavior of the ReadRowset method.
This property is read/write.
Related Topics