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!

ScrollBar.AddOnValueChanged

Adds an event handler for the "valueChanged" event notification. This event is called whenever the scrollbar's current position changes, whether it be because of mouse, keyboard, or programmatic input.

[Visual Basic]
Public Sub AddOnValueChanged( _
   ByVal handler As EventHandler _
)
[C#]
public void AddOnValueChanged(
   EventHandler handler
);
[C++]
public: void AddOnValueChanged(
   EventHandler* handler
);
[JScript]
public function AddOnValueChanged(
   handler : EventHandler
);

Parameters

handler
New Event Handler to install for this event.

See Also

ScrollBar Class | ScrollBar Members | System.WinForms Namespace