Description
This .NET enum wraps the AcTc.RefreshOption ObjectARX enum.
RefreshFlags specifies options for refreshing tool catalog items.
Visual Basic
Public Enum RefreshFlags RefreshAll = &H1f RefreshChildren = &H10 RefreshImage = 4 RefreshItem = 1 RefreshLinkedItem = 2 RefreshShowProgress = &H40 RefreshStockTool = 8 End Enum
C#
public enum RefreshFlags { RefreshAll = 0x1f, RefreshChildren = 0x10, RefreshImage = 4, RefreshItem = 1, RefreshLinkedItem = 2, RefreshShowProgress = 0x40, RefreshStockTool = 8 }
Members
Members | Description |
---|---|
RefreshAll = 0x1f | Refreshes the item, linked item, image, stock tool, and children. |
RefreshChildren = 0x10 | Recursively applies the refresh option to the children. |
RefreshImage = 4 | Refreshes item's image. |
RefreshItem = 1 | Refreshes the item. |
RefreshLinkedItem = 2 | Refreshes the linked item. |
RefreshShowProgress = 0x40 | Displays a progress dialog while refreshing, with a button to cancel the Refresh. |
RefreshStockTool = 8 | Refreshes the stock tool referenced by the tool for tool items. |