UITestAction.IsParameterBound Property
If this action can be parameterized, gets or sets a value that indicates whether the action is bound to a test parameter.
Namespace: Microsoft.VisualStudio.TestTools.UITest.Common
Assembly: Microsoft.VisualStudio.TestTools.UITest.Common (in Microsoft.VisualStudio.TestTools.UITest.Common.dll)
Syntax
public bool IsParameterBound { get; set; }
public:
property bool IsParameterBound {
bool get();
void set(bool value);
}
member IsParameterBound : bool with get, set
Public Property IsParameterBound As Boolean
Property Value
Type: System.Boolean
true if the action is bound to a test parameter; otherwise, false.
Exceptions
Exception | Condition |
---|---|
NotSupportedException | The IsParameterizable property is false. This means this action cannot be parameterized. |
Remarks
Raises the PropertyChanged event when the value is set.
See Also
IsParameterizable
PropertyChanged
UITestAction Class
Microsoft.VisualStudio.TestTools.UITest.Common Namespace
Return to top