SelPillOn, SelPillCol, SelPillOpac, SelPillRad, SelPillInH, SelPillInV

XML identifiers: Defines whether a colored backdrop (pill) is on or off (SelPillOn), it´s color (SelPillCol); opacity, (SelPillOpac) radius (SelPillRad), horizontal and vertical inset (SelPillInH, SelPillInV), please see specifics below. As usual, no need to add this to your MDM settings, unless you want to change them in your installation.

Purpose: Gives better visual clue to buttons web button and language selected.

Status: In use from May 2026, in versions 1.1.8.x and 1.2.6.x.

Category: Single level (aka standard identifier).

Usage: See example, bellow.

Definition, type and defaults with examples

PropertyValue
KeySelPillOn
TypeBoolean
Defaulttrue

XML example:

<!-- Disable the selection pill indicator entirely -->
<key>SelPillOn</key>
<false/>

SelPillCol — Selection Pill Color

Background color of the pill in hexadecimal #RRGGBBAA format, where
AA is the alpha (opacity) channel. If no alpha is specified, the pill
uses the value from SelPillOpac.

PropertyValue
KeySelPillCol
TypeString (hex color)
Default#007AFF (iOS system blue)

XML example:

<!-- Corporate green pill at 60 % opacity -->
<key>SelPillCol</key>
<string>#34C75999</string>

SelPillOpac — Selection Pill Opacity

Overall opacity of the pill as a percentage. 100 = fully opaque,
0 = invisible. This is combined with any alpha value already present in
SelPillCol.

PropertyValue
KeySelPillOpac
TypeInteger
Default20 (= 0.20 alpha)
UnitPercent

XML example:

<!-- Make the pill more prominent -->
<key>SelPillOpac</key>
<integer>50</integer>

SelPillRad — Selection Pill Corner Radius

Corner radius of the pill in points. A value of 0 (the default) produces
an automatic capsule shape where the radius equals half the pill’s height,
resulting in fully rounded ends.

PropertyValue
KeySelPillRad
TypeInteger
Default0 (= automatic capsule)
UnitPoints

SelPillInH — Selection Pill Horizontal Inset

Extra horizontal padding (in points) between the pill’s edge and the
button text inside it.

PropertyValue
KeySelPillInH
TypeInteger
Default6
UnitPoints

XML example:

<!-- Wider pill with more breathing room -->
<key>SelPillInH</key>
<integer>10</integer>

SelPillInV — Selection Pill Vertical Inset

Extra vertical padding (in points) between the pill’s edge and the
button text inside it.

PropertyValue
KeySelPillInV
TypeInteger
Default4
UnitPoints

XML example:

<!– Taller pill –> <key>SelPillInV</key> <integer>8</integer>

Development status: Released in 1.1.8.x/1.2.6.x. Standard feature, as defined in app config.

Comprehensive MDM XML file example, with the settings of this page in bold, but also including other settings of software release 1.1.8.x/1.2.6.x:

<!-- Navigation bar scaling -->
<key>MaxSclFctr</key>
<integer>150</integer>
<key>BtnPadPct</key>
<integer>10</integer>
<key>NavMrgnPct</key>
<integer>17</integer>

<!-- Selection pill indicator -->
<key>SelPillOn</key>
<true/>
<key>SelPillCol</key>
<string>#007AFF</string>
<key>SelPillOpac</key>
<integer>20</integer>
<key>SelPillRad</key>
<integer>0</integer>
<key>SelPillInH</key>
<integer>6</integer>
<key>SelPillInV</key>
<integer>4</integer>

<!-- Admin Hub -->
<key>AdmHubHtPct</key>
<integer>75</integer>

<!-- Heartbeat retry -->
<key>HBRetryPct</key>
<integer>10</integer>
```

Document Revision: Apr. 2026. Rev. 1.0