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!

IUIService.ShowComponentEditor

Attempts to display a ComponentDesigner for a component. ComponenentDesigners are similar to property pages from COM. If the component does not support component designers, and InvalidArgumentException is thrown. To avoid this, be sure to call CanShowComponentEditor first.

[Visual Basic]
Function ShowComponentEditor( _
   ByVal component As Object, _
   ByVal parent As IWin32Window _
) As Boolean
[C#]
bool ShowComponentEditor(
   object component,
   IWin32Window parent
);
[C++]
bool ShowComponentEditor(
   Object* component,
   IWin32Window* parent
) = 0;
[JScript]
function ShowComponentEditor(
   component : Object,
   parent : IWin32Window
) : Boolean;

Parameters

component
The component for which to display a ComponentDesigner.
parent
The object to parent any dialogs to.

See Also

IUIService Interface | IUIService Members | System.WinForms.Design Namespace | TBD