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!

ComponentEditorPage.IsPageMessage

Gives the page a chance to process messages before the caller uses them.

[Visual Basic]
Overridable Public Function IsPageMessage( _
   ByVal msg As MSG _
) As Boolean
[C#]
public virtual bool IsPageMessage(
   MSG msg
);
[C++]
public: virtual bool IsPageMessage(
   MSG msg
);
[JScript]
public function IsPageMessage(
   msg : MSG
) : Boolean;

Parameters

msg
Message to process.

Return Value

true if this page processed the message, or false otherwise. If this returns true, the message will be eaten. Otherwise, the caller will continue to process the message.

See Also

ComponentEditorPage Class | ComponentEditorPage Members | System.WinForms.Design Namespace