Share

Autodesk.AutoCAD.Windows.ToolPalette.DownloadFlags Enumeration

Description

This .NET enum wraps the AcTc.DownloadOption ObjectARX enum. .DownloadOption provides options for downloading catalog items.

Visual Basic

Public Enum DownloadFlags
  All = &H1f
  Children = &H10
  Image = 4
  Item = 1
  LinkedItem = 2
  ShowProgress = &H40
  StockTool = 8
End Enum

C#

public enum DownloadFlags {
  All = 0x1f,
  Children = 0x10,
  Image = 4,
  Item = 1,
  LinkedItem = 2,
  ShowProgress = 0x40,
  StockTool = 8
}

Members

Members Description
All = 0x1f Downloads the item, linked item, image, stock tool, and children.
Children = 0x10 Recursively downloads the items' children; applies the download option to the children
Image = 4 Downloads the item's image.
Item = 1 Downloads the item.
LinkedItem = 2 Downloads the linked file into this item if this is a linked item.
ShowProgress = 0x40 Displays a progress dialog while downloading, with a button to cancel the download.
StockTool = 8 Downloads the stock tool referenced by the tool for tool items.

Was this information helpful?