Share via


ExtractText.StartsWith Property

Gets or sets a value representing the string which delimits the beginning of the string to extract.

Namespace:  Microsoft.VisualStudio.TestTools.WebTesting.Rules
Assembly:  Microsoft.VisualStudio.QualityTools.WebTestFramework (in Microsoft.VisualStudio.QualityTools.WebTestFramework.dll)

Syntax

'Declaration
Public Property StartsWith As String
'Usage
Dim instance As ExtractText 
Dim value As String 

value = instance.StartsWith

instance.StartsWith = value
public string StartsWith { get; set; }
public:
property String^ StartsWith {
    String^ get ();
    void set (String^ value);
}
public function get StartsWith () : String 
public function set StartsWith (value : String)

Property Value

Type: System.String
A string delimiting the beginning of the string to extract.

Remarks

If UseRegularExpression is true, the property can be set with a regular expression to enable delimiting of complex strings.

.NET Framework Security

See Also

Reference

ExtractText Class

ExtractText Members

Microsoft.VisualStudio.TestTools.WebTesting.Rules Namespace

Other Resources

Regular Expressions as a Language

Character Classes