Implementing the UI Automation Value Control Pattern
This topic introduces guidelines and conventions for implementing IValueProvider, including information on events and properties. Links to additional references are listed at the end of the topic.
The ValuePattern control pattern is used to support controls that have an intrinsic value not spanning a range and that can be represented as a string. This string can be editable, depending on the control and its settings. For examples of controls that implement this pattern, see Control Pattern Mapping for UI Automation Clients.
This topic contains the following sections.
- Implementation Guidelines and Conventions
- Required Members for IValueProvider
- Exceptions
- Related Topics
Implementation Guidelines and Conventions
When implementing the Value control pattern, note the following guidelines and conventions:
- Controls such as ListItem and TreeItem must support ValuePattern if the value of any of the items is editable, regardless of the current edit mode of the control. The parent control must also support ValuePattern if the child items are editable.
Example of an Editable List Item
Single-line edit controls support programmatic access to their contents by implementing IValueProvider. However, multi-line edit controls do not implement IValueProvider; instead they provide access to their content by implementing ITextProvider.
To retrieve the textual contents of a multi-line edit control, the control must implement ITextProvider. However, ITextProvider does not support setting the value of a control.
IValueProvider does not support the retrieval of formatting information or substring values. Implement ITextProvider in these scenarios.
IValueProvider must be implemented by controls such as the Color Picker selection control from Microsoft Word (illustrated below), which supports string mapping between a color value (for example, "yellow") and an equivalent internal RGB structure.
Example of Color Swatch String Mapping
- A control should have its IsEnabledProperty set to true and its IsReadOnlyProperty set to false before allowing a call to SetValue.
Required Members for IValueProvider
The following properties and methods are required for implementing IValueProvider.
Required members | Member type | Notes |
---|---|---|
IsReadOnlyProperty |
Property |
None |
Property |
None |
|
Method |
None |
Exceptions
Providers must throw the following exceptions.
Exception type | Condition |
---|---|
SetValue
|
|
SetValue
|
|
SetValue
|
See Also
Tasks
Support Control Patterns in a UI Automation Provider
Use Caching in UI Automation
Concepts
UI Automation Control Patterns Overview
UI Automation Control Patterns for Clients
UI Automation Tree Overview