Die Oberfläche von VDS Renaissance ist in mehreren Sprachen verfügbar. Die offizielle Dokumentation wird auf Englisch gepflegt, um eine einheitliche, konsistente und stets aktuelle Referenz zu gewährleisten.

STATUS dialog element

Windows Linux macOS

Syntax

DIALOG ADD,STATUS,<name>, <text>, <style>

DIALOG ADD,STATUS,<name>, <text>[<size>] { | <text>[<size>] } … , <style>

Description

This dialog element creates a status bar at the foot of the dialog. Specification of the initial text is optional. In the first form of use, a simple status bar is created allowing one item of text to be displayed. Vertical bars may be used to create a status bar with multiple sections. In this case, the size of each section and the text justification can be specified by including the width (in pixels) plus the letters L (left justified, the default), C (centered) or R (right justified) in square brackets before the section separator.

When a status bar has multiple sections, tabs are used to separate the text for each section. The entire status bar text must be set each time it is changed. It is not possible to update a section individually.

Styles

A user-defined style may be used to change the default font style, but status bars always use the standard Windows colors. The size is also fixed, so the status bar will not resize to accommodate a larger font.

Example

DIALOG ADD,STATUS,STATUS1,Panel 1[80]|Panel 2[120C]|Panel 3
DIALOG SET,STATUS1,Panel 1 text@tab()Panel 2 text@tab()Panel 3

See also