Side Container PRO
Key name: SideContainer
Element type: Dictionary
Status: Optional
Availability: 2.1.0+
Specify a container that will be fixed at the right side of the window and will not be impacted by slides navigation. This can be useful to display informations to the user all along the session. For example monitoring.
Keys
Name | Type | Required |
---|---|---|
Width | Number | |
Container | Dictionnary (Container) | Required |
Detail
Width
Type: Number
Default: 250
Explanation: The width of the container, in points.
Container Required
Type: Container
Explanation: The container to put in the right side bar.
Example
Display an AppMonitor
Component in a side container.
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<!-- ... -->
<key>SideContainer</key>
<dict>
<key>Width</key>
<integer>250</integer>
<key>Container</key>
<dict>
<key>Components</key>
<array>
<dict>
<key>Type</key>
<string>AppMonitor</string>
</dict>
</array>
</dict>
</dict>
<!-- ... -->
</dict>
</plist>