次の方法で共有


UITestControl.GetProperty メソッド

指定したプロパティの値を取得します。

名前空間:  Microsoft.VisualStudio.TestTools.UITesting
アセンブリ:  Microsoft.VisualStudio.TestTools.UITesting (Microsoft.VisualStudio.TestTools.UITesting.dll 内)

構文

'宣言
Public Function GetProperty ( _
    propertyName As String _
) As Object
public Object GetProperty(
    string propertyName
)
public:
Object^ GetProperty(
    String^ propertyName
)
member GetProperty : 
        propertyName:string -> Object 
public function GetProperty(
    propertyName : String
) : Object

パラメーター

  • propertyName
    型 : System.String
    値を取得するプロパティの名前。

戻り値

型 : System.Object
指定されたプロパティの値を表す ObjectObject は適切なデータ型にキャストされる必要があります。

解説

UITestControl のプロパティにアクセスするには (たとえば ListBox の項目の数を取得するためやボタンにテキストを設定するために)、GetProperty と SetProperty を使用して UITestControl の特定のプロパティを設定および設定する必要があります。propertyName パラメーターは、アクセスするプロパティを指定します。

HtmlListの項目数を取得するには、パラメーター ItemCountとともに GetProperty を使用します。

.NET Framework セキュリティ

  • 直前の呼び出し元に対する完全な信頼。このメンバーは、部分的に信頼されているコードから使用することはできません。詳細については、「部分信頼コードからのライブラリの使用」を参照してください。

参照

関連項目

UITestControl クラス

Microsoft.VisualStudio.TestTools.UITesting 名前空間

HtmlList

ItemCount

その他の技術情報

How to: Use UI Control Actions and Properties in Your Coded UI Tests