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!

AxHost.OnPropertyChanged

This method is called by the control when any property changes. Inheriting controls can overide this method to get property change notification on basic properties. Inherting controls must call base.propertyChanged.

[Visual Basic]
Overrides Protected Sub OnPropertyChanged( _
   ByVal pe As PropertyChangedEventArgs _
)
[C#]
protected override void OnPropertyChanged(
   PropertyChangedEventArgs pe
);
[C++]
protected: override void OnPropertyChanged(
   PropertyChangedEventArgs* pe
);
[JScript]
protected override function OnPropertyChanged(
   pe : PropertyChangedEventArgs
);

Parameters

pe
Property that changed.

See Also

AxHost Class | AxHost Members | System.WinForms Namespace