Version

SplitterBarMoving Property

Gets sets name of javascript function which is called while splitter bar is dragging by mouse.
Syntax
'Declaration
 
Public Property SplitterBarMoving As String
public string SplitterBarMoving {get; set;}
Example
// The client side event SplitterBarMoving takes two parameters, sender and e.
// Sender is the object which is raising the event
// e is the SplitterBarPositionEventArgs
function WebSplitter1_SplitterBarMoving(sender, e) {
   var websplitter = $find("WebSplitter1");

   // Get new size of previous pane
   newSize = e.get_prevPaneNewSize();

   // Get old size of previous pane
   oldSize = e.get_prevPaneOldSize();

   window.status = "Old Size " + oldSize + ":: New Size " + newSize;         
}
Me.WebSplitter1.ClientEvents.SplitterBarMoving = "WebSplitter_SplitterBarMoving"
this.WebSplitter1.ClientEvents.SplitterBarMoving = "WebSplitter_SplitterBarMoving";
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