Defines a callback interface for retrieving and setting a property value.
package com.ms.wfc.core
public interface IValueAccess
This interface allows the editValue method of a value editor to retrieve and set a property value. The editValue method typically performs the following steps:
Calls IValueAccess.getValue to retrieve the value.
Presents a user interface to modify the value. (The IValueAccess.getService method can be used to access services to help display the user interface.)
Calls IValueAccess.setValue to set the new value.
See Also IValueEditor