NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Splitter.OnSplitterMoving

Inherriting classes should override this method to respond to the splitterMoving event. This event occurs while the splitter is being moved by the user.

[Visual Basic]
Overridable Protected Sub OnSplitterMoving( _
   ByVal sevent As SplitterEventArgs _
)
[C#]
protected virtual void OnSplitterMoving(
   SplitterEventArgs sevent
);
[C++]
protected: virtual void OnSplitterMoving(
   SplitterEventArgs* sevent
);
[JScript]
protected function OnSplitterMoving(
   sevent : SplitterEventArgs
);

Parameters

sevent
Event data

See Also

Splitter Class | Splitter Members | System.WinForms Namespace | SplitterEventArgs