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!

RelationsCollectionEditor.EditValue

Takes the value returned from valueAccess.getValue() and modifies or replaces the value, passing the result into valueAccess.setValue(). This is where an editor can launch a modal dialog or create a drop down editor to allow the user to modify the value. Host assistance in presenting UI to the user can be found through the valueAccess.getService function.

[Visual Basic]
Overrides Public Sub EditValue( _
   ByVal valueAccess As IValueAccess _
)
[C#]
public override void EditValue(
   IValueAccess valueAccess
);
[C++]
public: override void EditValue(
   IValueAccess* valueAccess
);
[JScript]
public override function EditValue(
   valueAccess : IValueAccess
);

Parameters

valueAccess
The way that editValue accesses and modifies a given value.

See Also

RelationsCollectionEditor Class | RelationsCollectionEditor Members | System.Data.Design Namespace | IValueAccess