Version

ImageMouseOver Property

Event fired when the mouse is over an Image.
Syntax
'Declaration
 
Public Property ImageMouseOver As String
public string ImageMouseOver {get; set;}
Example
// The client side event ImageMouseOver takes two parameters, sender and e.
// Sender is the object which is raising the event
// e is the EventArgs
function WebImageViewer_ImageMouseOver(sender, e) {
   var imageViewer = $find("WebImageViewer1");

   // Gets reference to the browser event
   var browserRef = e.get_browserEvent();

   // Get the scroll animation object   
   var scrollAnimations =   imageViewer.get_scrollAnimations();
           
   // Set the Animation type to continuous
   scrollAnimations.set_type($IG.ScrollAnimation.Continuous);
           
   // Specify the direction
   imageViewer.navigateNext();
}
Me.WebImageViewer1.ClientEvents.ImageMouseOver = "WebImageViewer_ImageMouseOver"
this.WebImageViewer1.ClientEvents.ImageMouseOver = "WebImageViewer_ImageMouseOver";
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also