Table of Contents

Class TerminalButton

Namespace
RichHudFramework.UI.Client
Assembly
RichHudClient.dll

A clickable button control for a ControlTile.

Mimics the appearance of the standard Space Engineers terminal button.

public class TerminalButton : TerminalControlBase
Inheritance
TerminalButton
Inherited Members

Examples

new TerminalButton()
{
    Name = "TerminalButton",
    ControlChangedHandler = (obj, args) =>
    {
        var btn = obj as TerminalButton;
        ExceptionHandler.SendChatMessage($"{btn.Name} pressed");
    },
    ToolTip = "Simple button. Fires an event when clicked."
}

Constructors

TerminalButton()

public TerminalButton()