Share

RefreshOption

C++

enum RefreshOption {
  kRefreshItem = kDownloadItem,
  kRefreshLinkedItem = kDownloadLinkedItem,
  kRefreshImage = kDownloadImage,
  kRefreshStockTool = kDownloadStockTool,
  kRefreshChildren = kDownloadChildren,
  kRefreshAll = kDownloadAll,
  kRefreshShowProgress = kDownloadShowProgress,
  kRefreshNotifyTool = (0x1 << 16)
};

File

AcTc.h

Members

Members Description
kRefreshItem Refreshes the item
kRefreshLinkedItem Refreshes the linked item
kRefreshImage Refreshes item's image
kRefreshStockTool Refreshes the stock tool referenced by the tool for tool items
kRefreshChildren Recursively applies the refresh option to the children
kRefreshAll Refreshes the item, linked item, image, stock tool, and children; combines the first five options
kRefreshShowProgress Displays a progress dialog while refreshing, with a button to cancel the Refresh
kRefreshNotifyTool For internal use

Description

Specifies options for refreshing tool catalog items.

Was this information helpful?