This .NET enum wraps an AcTrayItemBubbleWindowControl ObjectARX enum.
TrayItemBubbleWindowControl contains icon values return values for the bubble window.
Public Enum TrayItemBubbleWindowCloseReason ClosedByUser = 3 DocumentDeactivated = 7 FailedToCreate = 0 HyperlinkClicked = 5 NoIcons = 1 NoNotifications = 2 TimedOut = 4 End Enum
|
Members |
Description |
|
ClosedByUser = 3 |
The user has closed the bubble window. |
|
DocumentDeactivated = 7 |
Indicates that a drawing status bar's tray item bubble window is closed because its drawing is no longer the current drawing. |
|
FailedToCreate = 0 |
The bubble window could not be created. |
|
HyperlinkClicked = 5 |
The user has closed the bubble window by clicking the hyperlink text. |
|
NoIcons = 1 |
The tray icon area is not visible because the drawing is inactive, or because the user has turned off the tray icon area; therefore, the bubble window could not be shown. |
|
NoNotifications = 2 |
The user has turned off tray area notifications and the bubble window could not be shown. |
|
TimedOut = 4 |
The bubble window has closed because the display time has expired. |
public enum TrayItemBubbleWindowCloseReason {
FailedToCreate,
NoIcons,
NoNotifications,
ClosedByUser,
TimedOut,
HyperlinkClicked,
DocumentDeactivated
}| Comments? |