Autodesk.AutoCAD.Windows Namespace > IconType Enumeration
Autodesk.AutoCAD.Windows.IconType Enumeration
Description

 

This .NET enum wraps the possible values returned by the AcTrayItemBubbleWindowControl.GetIconType() ObjectARX function. This function returns the bubble window icon type.

Visual Basic
Public Enum IconType
  None
  Information
  Critical
  Warning
End Enum
C#
public enum IconType {
  None,
  Information,
  Critical,
  Warning
}
Members
Members 
Description 
None 
No icon is displayed in the bubble window. 
Information 
Bubble window provides information to the user. 
Critical 
Bubble window informs the user of a critical condition that requires intervention or correction before work can continue. 
Warning 
Bubble window alerts the user to a situation that requires user input. 
   Comments?