Share

AcDbDgnRefFileData Structure

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
typeSpecifies the type of reference file.
savedPathAndNameThe path and filename as stored in the host dgn file.
foundPathAndNameThe path and filename as stored in the host dgn file.
refIdA unique identifier for this reference file.

Description

This struct holds reference file path information

Was this information helpful?