Version

SplitterBarMouseOver Property

Gets sets name of javascript function which is called after splitter bar html element gets mouseover event of a browser.
Syntax
'Declaration
 
Public Property SplitterBarMouseOver As String
public string SplitterBarMouseOver {get; set;}
Example
// The client side event SplitterBarMouseOver takes two parameters, sender and e.
// Sender is the object which is raising the event
// e is the EventArgs
function WebSplitter1_SplitterBarMouseOver(sender, e) {
   var websplitter = $find("WebSplitter1");
            
   // Get reference to pane located at index 0
   var websplitterPane = websplitter.getPaneAt(0);
            
   // Sets the pane to 200 px
   websplitterPane.set_size(200);

   //Gets reference to the browser event
   var browserRef = e.get_browserEvent();
}
Me.WebSplitter1.ClientEvents.SplitterBarMouseOver = "WebSplitter_SplitterBarMouseOver"
this.WebSplitter1.ClientEvents.SplitterBarMouseOver = "WebSplitter_SplitterBarMouseOver";
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