XRE Help

Items - Types - Boolean

Booleans are rendered as check boxes. Accepted values for boolean true are "1", "true", "on" and "yes"; Values for false are "0", "false", "off" and "no".

Options

Specific attributes for boolean items are:

OptionMeaning
invertNegate boolean logic

Example

Normal logic:

<Item type="bool"
    entry="Notepad:StatusBar"
    name="Show status bar"
/>

Inverted logic:

<Item type="bool"
    entry="Notepad:StatusBar"
    name="Hide status bar"
    options="invert"
/>