| MenuItemCollectionEditorEditValue Method (ITypeDescriptorContext, IServiceProvider, Object) |
Edits the specified object's value using the editor style indicated by the GetEditStyle method.
Namespace:
Deltabit.WinForms
Assembly:
Deltabit.HotImage (in Deltabit.HotImage.dll) Version: 2.1.1.0 (2.1.1)
Syntax public override Object EditValue(
ITypeDescriptorContext context,
IServiceProvider provider,
Object value
)
Public Overrides Function EditValue (
context As ITypeDescriptorContext,
provider As IServiceProvider,
value As Object
) As Object
Dim instance As MenuItemCollectionEditor
Dim context As ITypeDescriptorContext
Dim provider As IServiceProvider
Dim value As Object
Dim returnValue As Object
returnValue = instance.EditValue(context,
provider, value)
public:
virtual Object^ EditValue(
ITypeDescriptorContext^ context,
IServiceProvider^ provider,
Object^ value
) override
Parameters
- context
- Type: System.ComponentModelITypeDescriptorContext
An ITypeDescriptorContext that can be used to gain additional context information. - provider
- Type: SystemIServiceProvider
An IServiceProvider that this editor can use to obtain services. - value
- Type: SystemObject
The object to edit.
Return Value
Type:
ObjectThe new value of the object. If the value of the object has not changed, the same object passed is returned.
See Also