Methods

Method
Argument (Set) - Return (Get)

ChipSet.Options

table

ChipSet.State

function-N/A

ChipSet.Visible

boolean

ChipSet.ReadOnly

boolean

ChipSet.Changed

N/A

ChipSet:Destroy()

N/A

Example

Set

local ChipSet = Tab:ChipSet({
    Options = {
        A = false,
        B = false,
        C = true
    }
})

ChipSet.Options = {
    SynX = false,
    Krnl = false,
    Fluxus = true
}

Get

local ChipSet = Tab:ChipSet({
    Options = {
        A = false,
        B = false,
        C = true
    }
})

print(ChipSet.Options)

Last updated