HiddenStatus

public enum HiddenStatus : Int, Codable

The set of available hidden status types.

case notHidden = -1
case disabled = 0
case hidden = 1

Cases

Initializers

  • Initializes an instance of HiddenStatus with the given bool value.

    If nil is given, then an instance of .disabled is initialized.

    Declaration

    Swift

    public init(_ bool: Bool?)

    Parameters

    bool

    The boolean value used to initialize an instance of HiddenStatus.