Table of Contents

Class TerminalCheckbox

Namespace
RichHudFramework.UI.Client
Assembly
RichHudClient.dll

A boolean checkbox control for a ControlTile.

Mimics the appearance of the standard Space Engineers terminal checkbox.

public class TerminalCheckbox : TerminalValue<bool>
Inheritance
TerminalCheckbox
Inherited Members

Examples

new TerminalCheckbox()
{
    Name = "TerminalCheckbox",
    ControlChangedHandler = (obj, args) =>
    {
        var checkbox = obj as TerminalCheckbox;
        ExceptionHandler.SendChatMessage($"{checkbox.Name} = {checkbox.Value}");
    },
    ToolTip = "Sets a binary value. Fires an event when toggled."
}

Constructors

TerminalCheckbox()

public TerminalCheckbox()