Padding.Equals 方法

定义

重载

名称 说明
Equals(Object)

确定指定对象的值是否与当前 Padding对象等效。

Equals(Padding)

指示当前对象是否等于同一类型的另一个对象。

Equals(Object)

Source:
Padding.cs
Source:
Padding.cs
Source:
Padding.cs
Source:
Padding.cs
Source:
Padding.cs

确定指定对象的值是否与当前 Padding对象等效。

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

参数

other
Object

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

返回

如果对象等效,则为 />;否则为

注解

只有类型(或派生类型 Padding )的其他对象可以等于当前 Padding对象。 此外,这两个Right对象的对应 LeftBottomTop属性和Padding属性必须相同。

另请参阅

适用于

Equals(Padding)

Source:
Padding.cs
Source:
Padding.cs
Source:
Padding.cs
Source:
Padding.cs
Source:
Padding.cs

指示当前对象是否等于同一类型的另一个对象。

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

参数

other
Padding

要与此对象进行比较的对象。

返回

如果当前对象等于 参数,则为 。

实现

适用于