Intersoft ClientUI Documentation
MouseEnterAction Property
See Also  Send Feedback
Intersoft.Client.UI.Aqua Namespace > UXCallOut Class : MouseEnterAction Property






Gets or sets the action at mouse enter.

Syntax

Visual Basic (Declaration) 
<CategoryAttribute("Behavior")>
Public Property MouseEnterAction As PopupAction
Visual Basic (Usage)Copy Code
Dim instance As UXCallOut
Dim value As PopupAction
 
instance.MouseEnterAction = value
 
value = instance.MouseEnterAction
C# 
[CategoryAttribute("Behavior")]
public PopupAction MouseEnterAction {get; set;}
Delphi 
public read-write property MouseEnterAction: PopupAction; 
JScript 
CategoryAttribute("Behavior")
public function get,set MouseEnterAction : PopupAction
Managed Extensions for C++ 
[CategoryAttribute("Behavior")]
public: __property PopupAction get_MouseEnterAction();
public: __property void set_MouseEnterAction( 
   PopupAction value
);
C++/CLI 
[CategoryAttribute("Behavior")]
public:
property PopupAction MouseEnterAction {
   PopupAction get();
   void set (    PopupAction value);
}

Remarks

You can control when the callout should be displayed or collapsed based on mouse interaction, which is listed below.

By default, the MouseEnterAction property is set to ShowPopup, while the other properties are set to None. This setting shows the UXCallOut when your mouse cursor is over the element.

The following list describes the some configurations used in common UI scenarios:

  • MouseEnterAction = ShowPopup, MouseLeaveAction = HidePopup, DisableOverlay = True
    This setting can be used in the scenario where you want to use UXCallOut as advanced tooltip.
  • MouseEnterAction = None, MouseClickAction = ShowPopup
    This setting can be used in the scenario where you want to use UXCallOut to display information in a modal view.

Requirements

Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family

See Also

© 2012 All Rights Reserved.