Edits the specified object's value using the editor style indicated by the 
GetEditStyle()()()() method.
            
 Namespace: Dapfor.Net.EditorsAssembly: Dapfor.Net (in Dapfor.Net.dll) Version: 2.10.3.24917 (2.10.3.24917)
Syntax
| C# | 
|---|
public override Object EditValue(
	ITypeDescriptorContext context,
	IServiceProvider provider,
	Object value
)  | 
| Visual Basic | 
|---|
Public Overrides Function EditValue ( 
	context As ITypeDescriptorContext,
	provider As IServiceProvider,
	value As Object
) As Object  | 
| Visual C++ | 
|---|
public:
virtual Object^ EditValue(
	ITypeDescriptorContext^ context, 
	IServiceProvider^ provider, 
	Object^ value
) override  | 
| F# | 
|---|
abstract EditValue : 
        context : ITypeDescriptorContext * 
        provider : IServiceProvider * 
        value : Object -> Object 
override EditValue : 
        context : ITypeDescriptorContext * 
        provider : IServiceProvider * 
        value : Object -> Object  | 
Parameters
- context
 - Type: System.ComponentModel..::..ITypeDescriptorContext
An ITypeDescriptorContext that can be used to gain additional context information. 
- provider
 - Type: System..::..IServiceProvider
An IServiceProvider that this editor can use to obtain services. 
- value
 - Type: System..::..Object
The object to edit. 
Return Value
Type: 
Object
            The new value of the object. If the value of the object has not changed, this should return the same object it was passed.
            
See Also