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!

UITypeEditor.EditValue (IServiceObjectProvider, Object)

Edits the given object value using the editor style provided by GetEditorStyle. A service provider is provided so that any required editing services can be obtained.

[Visual Basic]
Overloads Public Function EditValue( _
   ByVal provider As IServiceObjectProvider, _
   ByVal value As Object _
) As Object
[C#]
public object EditValue(
   IServiceObjectProvider provider,
   object value
);
[C++]
public: Object* EditValue(
   IServiceObjectProvider* provider,
   Object* value
);
[JScript]
public function EditValue(
   provider : IServiceObjectProvider,
   value : Object
) : Object;

Parameters

provider
A service provider object through which editing services may be obtained.
value
An instance of the value being edited.

Return Value

The new value of the object. If the value of the object hasn't changed, this should return the same object it was passed.

See Also

UITypeEditor Class | UITypeEditor Members | System.Drawing.Design Namespace | UITypeEditor.EditValue Overload List