Share

XrefNotificationStatus

C++

enum XrefNotificationStatus {
  kXrfNotifyNone = 0,
  kXrfNotifyResolvedMatch = 1,
  kXrfNotifyResolvedElsewhere = 2,
  kXrfNotifyResolvedWithUpdate = 3,
  kXrfNotifyResolvedUpdateAvailable = 4
};

File

acdb.h

Members

Members Description
kXrfNotifyNone Indicates no information available for xref notifications. This is the default status.
kXrfNotifyResolvedMatch Indicates an xref was resolved with a drawing as specified by the block table record.
kXrfNotifyResolvedElsewhere Indicates an xref was resolved with a drawing from a different location than the one specified by the block table record.
kXrfNotifyResolvedWithUpdate Indicates an xref was resolved with a drawing that has been updated since the last time the reference drawing was saved.
kXrfNotifyResolvedUpdateAvailable Indicates an xref has been resolved, but the file has been updated since was resolved and it should be reloaded.

Description

Defines statuses for xref resolution notifications.

Was this information helpful?