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!

PropertyDescriptor.GetEditor

Gets an editor of the specified type.

[Visual Basic]
Overridable Public Function GetEditor( _
   ByVal editorBaseType As Type _
) As Object
[C#]
public virtual object GetEditor(
   Type editorBaseType
);
[C++]
public: virtual Object* GetEditor(
   Type* editorBaseType
);
[JScript]
public function GetEditor(
   editorBaseType : Type
) : Object;

Parameters

editorBaseType
The base type of editor, which is used to differentiate between multiple editors that a property may support.

Return Value

An instance of the requested editor type, or a null reference (in Visual Basic Nothing) if an editor could not be found.

See Also

PropertyDescriptor Class | PropertyDescriptor Members | System.ComponentModel Namespace