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
| Property | Value |
|---|---|
| Key | SelPillOn |
| Type | Boolean |
| Default | true |
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, whereAA is the alpha (opacity) channel. If no alpha is specified, the pill
uses the value from SelPillOpac.
| Property | Value |
|---|---|
| Key | SelPillCol |
| Type | String (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 inSelPillCol.
| Property | Value |
|---|---|
| Key | SelPillOpac |
| Type | Integer |
| Default | 20 (= 0.20 alpha) |
| Unit | Percent |
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.
| Property | Value |
|---|---|
| Key | SelPillRad |
| Type | Integer |
| Default | 0 (= automatic capsule) |
| Unit | Points |
SelPillInH — Selection Pill Horizontal Inset
Extra horizontal padding (in points) between the pill’s edge and the
button text inside it.
| Property | Value |
|---|---|
| Key | SelPillInH |
| Type | Integer |
| Default | 6 |
| Unit | Points |
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.
| Property | Value |
|---|---|
| Key | SelPillInV |
| Type | Integer |
| Default | 4 |
| Unit | Points |
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