Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

SetValueAsComboBoxOptions Enumeration

 

Represents the flag values for configuring how to set the value of a ComboBox.

Namespace:   Microsoft.VisualStudio.TestTools.UITest.Extension
Assembly:  Microsoft.VisualStudio.TestTools.UITest.Extension (in Microsoft.VisualStudio.TestTools.UITest.Extension.dll)

[FlagsAttribute]
public enum class SetValueAsComboBoxOptions

Member nameDescription
DoNotVerifyMirrorLanguage

If the ComboBox is set for a left-to-right language, you cannot assume the location of the drop-down button. Use this flag if the button is not exposed as part of the user interface (UI) tree and the UI test framework is expected to guess the position of the button.

DoNotVerifySendKeys

Use with UseSetAsEdit to disable verification of the value.

ExpandProgrammatically

Expand the ComboBox programmatically.

None

Use the default.

PressEnterAfterTyping

Indicates to use the SendKeys method to send "{Enter}" after sending text.

UseLeftDropDownButton

Use the left drop-down button to expand the ComboBox. This member must be used with UseSelect.

UseQueryId

Use the query ID that is passed to the UITechnologyManager::Search method to search in the ComboBox list.

UseSelect

Expand the ComboBox and select the option from the drop-down list.

UseSetAsEdit

If ComboBox is editable, use the SendKeys method to set the value in the edit box; otherwise, use the SendKeys method to set the value in the ComboBox.

Because a ComboBox also has an EditBox component, these values can be combined with OR by using the SetValueAsEditBoxOptions values.

Return to top
Show: