| Article | 60001161 |
| Type | Wish |
| Product | Engine |
| Date Added | 6/2/2010 12:00:00 AM |
| Fixed | (6/2/2010 12:00:00 AM) |
| Submitted by | Adam White |
Summary
Save compressed vdcl files with size bigger than 4GBytes
Solution
A new property CompressionMethod of VectorDraw.Professional.vdObjects.vdFileProperties.Compression was added in vbdFileProperties
Get/Set the method used to save compressed data.
It gets the following values:
VectorDraw.Professional.vdObjects.vdFileProperties.Compression.DefaultCompression (The data saved with the default compression.This is the default value.)
and
VectorDraw.Professional.vdObjects.vdFileProperties.Compression.BigDocumentSizeCompression (The data saved using copression that supports large size of data biger than 4GBytes)
Example:
vdDocument.FileProperties.CompressionMethod = VectorDraw.Professional.vdObjects.vdFileProperties.Compression.BigDocumentSizeCompression ;
The value of CompressionMethod is static and keeps the same value for all documents in application thread.
