Share

LoadOption

C++

enum LoadOption {
  kLoadLinks = (0x1 << 0),
  kLoadImages = (0x1 << 1),
  kLoadOverlayImages = (0x1 << 2),
  kDoNotNotifyReactor = (0x1 << 3)
};

File

AcTc.h

Members

Members Description
kLoadLinks Load linked items also.
kLoadImages Load images while loading the item. If this option is not set, the images are loaded on demand. Use this option only if it is necessary to load images "up front," because statically loaded images unnecessarily occupy memory while not in use.
kLoadOverlayImages
kDoNotNotifyReactor

Description

Enumerates options for loading catalog item data.

Was this information helpful?