WinComboBox.GetContent Method

Gets the content of the control.

Namespace:  Microsoft.VisualStudio.TestTools.UITesting.WinControls
Assembly:  Microsoft.VisualStudio.TestTools.UITesting (in Microsoft.VisualStudio.TestTools.UITesting.dll)

Syntax

'Declaration
Public Function GetContent As String()
public string[] GetContent()
public:
array<String^>^ GetContent()
member GetContent : unit -> string[] 
public function GetContent() : String[]

Return Value

Type: array<String[]
The content of the control.

Remarks

Example - Verify all the values in the combo box.

string[] expectedContent = new string[] { "IE", "FireFox", "Safari" }; string[] actualContent = browserCombo.GetContent(); CollectionAssert.AreEqual(expectedContent, actualContent);

.NET Framework Security

See Also

Reference

WinComboBox Class

Microsoft.VisualStudio.TestTools.UITesting.WinControls Namespace