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!

WinFormsComponentEditor.EditComponent (IWin32Window, Object)

Brings up the advanced ui used to edit the component. The default implementation brings up a modal dialog containing a collection of ComponentEditorControl objects along with a switching UI.

[Visual Basic]
Overloads Overridable Public Function EditComponent( _
   ByVal owner As IWin32Window, _
   ByVal component As Object _
) As Boolean
[C#]
public virtual bool EditComponent(
   IWin32Window owner,
   object component
);
[C++]
public: virtual bool EditComponent(
   IWin32Window* owner,
   Object* component
);
[JScript]
public function EditComponent(
   owner : IWin32Window,
   component : Object
) : Boolean;

Parameters

owner
The owner for the dialog to be brought up.
component
The component to be edited.

Return Value

Whether the component was modified.

See Also

WinFormsComponentEditor Class | WinFormsComponentEditor Members | System.WinForms.Design Namespace | WinFormsComponentEditor.EditComponent Overload List | ComponentEditorAttribute