UITestControl.SetProperty 方法
設定指定之屬性的值。
命名空間: Microsoft.VisualStudio.TestTools.UITesting
組件: Microsoft.VisualStudio.TestTools.UITesting (在 Microsoft.VisualStudio.TestTools.UITesting.dll 中)
語法
'宣告
Public Sub SetProperty ( _
propertyName As String, _
value As Object _
)
public void SetProperty(
string propertyName,
Object value
)
public:
void SetProperty(
String^ propertyName,
Object^ value
)
member SetProperty :
propertyName:string *
value:Object -> unit
public function SetProperty(
propertyName : String,
value : Object
)
參數
- propertyName
型別:System.String
屬性名稱。
- value
型別:System.Object
要設定的值。
備註
若要存取 UITestControl的屬性,例如取得計數清單中的項目,或設定按鈕的文字,您必須使用 GetProperty 和 SetProperty 取得和設定 UITestControl的特定屬性。 propertyName 參數會指定要存取的屬性。
若要變更 WinButton 上的文字,請將 SetProperty 與參數 DisplayText 搭配使用,後面加上該按鈕的新文字。
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。
請參閱
參考
Microsoft.VisualStudio.TestTools.UITesting 命名空間
其他資源
How to: Use UI Control Actions and Properties in Your Coded UI Tests