C++
struct AcDbDgnRefFileData { enum FileType { kDgnFile = 1, kDwgFile = 2, kImageFile = 3, kOtherFile = 4 }; FileType type; AcString savedPathAndName; AcString foundPathAndName; AcDgnRefFileId refId; };
File
dgnrepath.h
Members
| Members | Description |
|---|---|
| kDgnFile | A reference file that is a DGN file |
| kDwgFile | A reference file that is a DWG reference file |
| kImageFile | A reference file that is an image file |
| kOtherFile | A reference file that is not a DGN, DWG or image file |
| type | Specifies the type of reference file. |
| savedPathAndName | The path and filename as stored in the host dgn file. |
| foundPathAndName | The path and filename as stored in the host dgn file. |
| refId | A unique identifier for this reference file. |
Description
This struct holds reference file path information