Share

DownloadOption

C++

enum DownloadOption {
  kDownloadItem = (0x1 << 0),
  kDownloadLinkedItem = (0x1 << 1),
  kDownloadImage = (0x1 << 2),
  kDownloadStockTool = (0x1 << 3),
  kDownloadChildren = (0x1 << 4),
  kDownloadAll = kDownloadItem|kDownloadLinkedItem|kDownloadImage|kDownloadStockTool|kDownloadChildren,
  kDownloadCleanDownloadDir = (0x1 << 5),
  kDownloadShowProgress = (0x1 << 6),
  kDownloadUseNewIds = (0x1 << 7),
  kDownloadNotifyTool = (0x1 << 12)
};

File

AcTc.h

Members

Members Description
kDownloadItem Downloads the item
kDownloadLinkedItem Downloads the linked file into this item if this is a linked item
kDownloadImage Downloads the item's image
kDownloadStockTool Downloads the stock tool referenced by the tool for tool items
kDownloadChildren Recursively downloads the items' children; applies the download option to the children
kDownloadAll Downloads the item, linked item, image, stock tool, and children; combines the first five options
kDownloadCleanDownloadDir Cleans the download directory before starting to download
kDownloadShowProgress Displays a progress dialog while downloading, with a button to cancel the download
kDownloadUseNewIds For internal use
kDownloadNotifyTool For internal use

Description

Options for downloading catalog items.

Was this information helpful?