AbstractTestItemCustomVariables Property |
Gets a list of custom variables defined by the user. These variables will be saved with the project. and will be replaced if necessary.
CustomVariables are more priority than variables in
Variables, if an variable of the same name exists both in CustomVariables and Variables, the value of that in CustomVarialbes will return.
Namespace:
Hummingbird.TestFramework.Automation
Assembly:
Hummingbird.TestFramework (in Hummingbird.TestFramework.dll) Version: 1.2.0.0
Syntax [DataMemberAttribute]
public ObservableCollection<Variable> CustomVariables { get; }
<DataMemberAttribute>
Public ReadOnly Property CustomVariables As ObservableCollection(Of Variable)
Get
public:
[DataMemberAttribute]
property ObservableCollection<Variable^>^ CustomVariables {
ObservableCollection<Variable^>^ get ();
}
[<DataMemberAttribute>]
member CustomVariables : ObservableCollection<Variable> with get
Property Value
Type:
ObservableCollectionVariable
The list of custom variables.
See Also