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!

TrackBar.OnScroll

Actually fires the "scroll" event. Inheriting classes should override this method in favor of actually adding an EventHandler for this event. Inheriting classes should not forget to call base.onScroll(e)

[Visual Basic]
Overridable Protected Sub OnScroll( _
   ByVal e As EventArgs _
)
[C#]
protected virtual void OnScroll(
   EventArgs e
);
[C++]
protected: virtual void OnScroll(
   EventArgs* e
);
[JScript]
protected function OnScroll(
   e : EventArgs
);

Parameters

e
Event object with the information for the Event.

See Also

TrackBar Class | TrackBar Members | System.WinForms Namespace