|
Description
|
Returns/sets the current file status of the control.
|
Syntax Visual Basic
|
[form.]DXFReader.FileStatus[ = FileStatusEnum]
|
|
Visual C++
|
long DXFReader.GetFileStatus(); void DXFReader.SetFileStatus(long nNewValue);
|
|
Delphi
|
property FileStatus: TOleEnum (FileStatusEnum);
|
|
C#
|
|
|
Remarks
|
This property isn't showed in Property Browser but is showed in the Object Browser. This property is setted to drLoaded invoking the ReadDXF method, to drNot Loaded invoking the NewDrawing method and to drModified after any drawing modification.Valid settings for the FileStatus property are:
| 0 | drNot Loaded | DXF file not loaded | | 1 | drLoaded | DXF file loaded | | 2 | drModified | DXF file modified |
|
|
Data Type
|
FileStatusEnum (Enumeration)
|
|
Default Value
|
drNot Loaded (0)
|