FilterableAttribute.Equals(Object) Method

Definition

Determines whether the current instance of the FilterableAttribute class is equal to the specified object.

public:
 override bool Equals(System::Object ^ obj);
public override bool Equals (object obj);
override this.Equals : obj -> bool
Public Overrides Function Equals (obj As Object) As Boolean

Parameters

obj
Object

The Object to compare with this instance.

Returns

true if the object contained in the obj parameter is equal to the current instance of the FilterableAttribute object; otherwise, false.

Remarks

Use the Equals method to determine whether the current instance of the FilterableAttribute class is equal to the specified object. For the objects to be equal, they must meet the following criteria:

  1. The object contained in the obj parameter must be a FilterableAttribute object.

  2. The Filterable property of both objects must be equal.

Note

This method is used primarily by control developers.

Applies to

See also