// 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";
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