Share

SaveOption

C++

enum SaveOption {
  kSaveLinksAsLinks = (0x1 << 0),
  kSaveLinksAsEmbedded = (0x1 << 1),
  kSaveImages = (0x1 << 2),
  kSaveAs = (0x1 << 3),
  kSaveOverlayImages = (0x1 << 4),
  kSaveAnsi = (0x1 << 5)
};

File

AcTc.h

Members

Members Description
kSaveLinksAsLinks Save linked items into their own linked files, thus preserving the links. Linked items are saved if either kSaveLinksAsLinks or kSaveLinksAsEmbedded is specified.
kSaveLinksAsEmbedded Embed all linked items in this item and save them to the specified archive. Linked items become embedded items. Linked items are saved if either kSaveLinksAsLinks or kSaveLinksAsEmbedded is specified.
kSaveImages Saves all images, including those that have not changed. If this option is not specified, saves only those images that have been modified and those whose destination files differ from their source files. Use this option only to force saving of all the images.
kSaveAs
kSaveOverlayImages
kSaveAnsi

Description

Enumerates options for saving catalog item data.

Was this information helpful?