Table of Contents

Class ButtonGroupModule

Namespace
HeyBox
Assembly
HeyBox.Net.Core.dll

按钮组模块,可用于 ICard 中。

public class ButtonGroupModule : IModule, IEquatable<ButtonGroupModule>, IEquatable<IModule>
Inheritance
ButtonGroupModule
Implements
Inherited Members
Extension Methods

Properties

Buttons

获取按钮组模块的按钮。

public ImmutableArray<ButtonNode> Buttons { get; }

Property Value

ImmutableArray<ButtonNode>

Type

获取模块的类型。

public ModuleType Type { get; }

Property Value

ModuleType

Methods

Equals(ButtonGroupModule?)

Indicates whether the current object is equal to another object of the same type.

public bool Equals(ButtonGroupModule? buttonGroupModule)

Parameters

buttonGroupModule ButtonGroupModule

Returns

bool

true if the current object is equal to the other parameter; otherwise, false.

Equals(object?)

Determines whether the specified object is equal to the current object.

public override bool Equals(object? obj)

Parameters

obj object

The object to compare with the current object.

Returns

bool

true if the specified object is equal to the current object; otherwise, false.

GetHashCode()

Serves as the default hash function.

public override int GetHashCode()

Returns

int

A hash code for the current object.

Operators

operator ==(ButtonGroupModule, ButtonGroupModule)

判定两个 ButtonGroupModule 是否相等。

public static bool operator ==(ButtonGroupModule left, ButtonGroupModule right)

Parameters

left ButtonGroupModule
right ButtonGroupModule

Returns

bool

如果两个 ButtonGroupModule 相等,则为 true;否则为 false

operator !=(ButtonGroupModule, ButtonGroupModule)

判定两个 ButtonGroupModule 是否不相等。

public static bool operator !=(ButtonGroupModule left, ButtonGroupModule right)

Parameters

left ButtonGroupModule
right ButtonGroupModule

Returns

bool

如果两个 ButtonGroupModule 不相等,则为 true;否则为 false