PropertyExpressionCollection.Remove Method

Definition

Overloads

Remove(PropertyExpression)

Removes the provided property expression from the collection.

Remove(String)

Removes the specified property expression from the collection.

Remove(PropertyExpression)

Removes the provided property expression from the collection.

public:
 virtual bool Remove(Microsoft::VisualStudio::TestTools::UITesting::PropertyExpression ^ propertyExpression);
public bool Remove (Microsoft.VisualStudio.TestTools.UITesting.PropertyExpression propertyExpression);
abstract member Remove : Microsoft.VisualStudio.TestTools.UITesting.PropertyExpression -> bool
override this.Remove : Microsoft.VisualStudio.TestTools.UITesting.PropertyExpression -> bool
Public Function Remove (propertyExpression As PropertyExpression) As Boolean

Parameters

propertyExpression
PropertyExpression

A PropertyExpression object to remove from the collection.

Returns

true if the property expression was removed; otherwise, false.

Implements

Applies to

Remove(String)

Removes the specified property expression from the collection.

public:
 bool Remove(System::String ^ propertyName);
public bool Remove (string propertyName);
member this.Remove : string -> bool
Public Function Remove (propertyName As String) As Boolean

Parameters

propertyName
String

The name of the property to remove from the collection.

Returns

true if the property expression was removed; otherwise, false.

Applies to