Version

CollapseButtonMouseOver Property

Gets sets name of javascript function which is called when collapse/expand button html element gets mouseover event of a browser.
Syntax
'Declaration
 
Public Property CollapseButtonMouseOver As String
public string CollapseButtonMouseOver {get; set;}
Example
//The client side event CollapseButtonMouseOver takes two parameters, sender and e.;
//Sender is the object which is raising the event
//e is the EventArgs
function WebSplitter1_CollapseButtonMouseOver(sender, e) {
   var websplitter = $find("WebSplitter1");
           
   // Gets reference to pane at index 0
   var websplitterPane = websplitter.getPaneAt(0);
           
   // Toggle the collapsed state of the pane
   websplitter.toggle(websplitterPane);
           
}
Me.WebSplitter1.ClientEvents.CollapseButtonMouseOver = "WebSplitter_CollapseButtonMouseOver"
this.WebSplitter1.ClientEvents.CollapseButtonMouseOver = "WebSplitter_CollapseButtonMouseOver";
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