DataGridLength.Equals 方法

定义

确定某个对象是否与当前 DataGridLength 相等。

重载

Equals(Object)

确定指定的对象是否等于当前的 DataGridLength

Equals(DataGridLength)

确定指定的 DataGridLength 是否等同于当前的 DataGridLength

Equals(Object)

确定指定的对象是否等于当前的 DataGridLength

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

参数

obj
Object

要与当前类型进行比较的对象。

返回

Boolean

如果指定的对象是将相同值或大小调整模式作为当前 DataGridLengthDataGridLength,则为 true;否则为 false

适用于

Equals(DataGridLength)

确定指定的 DataGridLength 是否等同于当前的 DataGridLength

public:
 virtual bool Equals(System::Windows::Controls::DataGridLength other);
public bool Equals (System.Windows.Controls.DataGridLength other);
override this.Equals : System.Windows.Controls.DataGridLength -> bool
Public Function Equals (other As DataGridLength) As Boolean

参数

other
DataGridLength

要与当前实例进行比较的 DataGridLength

返回

Boolean

如果指定的对象是将相同值或大小调整模式作为当前 DataGridLengthDataGridLength,则为 true;否则为 false

实现

适用于