DataSourceHeaders Property |
Gets or Sets the headers. if the file data source contains header (for example, The first row of a CSV the headers), headers will be refilled after the call of ImportData.
The headers can be used as an variable. For example, the token ${name} will be replace by the value where the header name is "name"
Namespace:
Hummingbird.TestFramework.Automation
Assembly:
Hummingbird.TestFramework (in Hummingbird.TestFramework.dll) Version: 1.2.0.0
Syntax [DataMemberAttribute]
public string[] Headers { get; set; }
<DataMemberAttribute>
Public Property Headers As String()
Get
Set
public:
[DataMemberAttribute]
property array<String^>^ Headers {
array<String^>^ get ();
void set (array<String^>^ value);
}
[<DataMemberAttribute>]
member Headers : string[] with get, set
Property Value
Type:
String
The string array represents the name of the column headers.
See Also