Enum OverlayToolTipFlags
Defines a set of flags that specify options or behaviors for the tooltip overlay.
[Flags]
public enum OverlayToolTipFlags
Fields
Clear = 4Indicates that overlays should be cleared before displaying new content.
ClearAndDismiss = DismissAfterInterval | ClearRepresents a combination of flags that clears the current state and dismisses the item after a specified interval.
DismissAfterInterval = 1Specifies that the overlay should be automatically dismissed after a predefined time interval.
None = 0Represents the absence of any specific value or option.
UseSystemColors = 2Specifies that the system colors should be used for rendering the overlay.
Remarks
This enumeration supports bitwise combination of its member values using the bitwise OR operator. Use the None value to represent the absence of any options.