.
Eloquence JDLG contact contact


JDLG object and attribute reference:
StatusBar class

 
.
  Document revision: 2023-02-22
Refers to JDLG version: 2.0.16


Contents


A Dialog may contain one StatusBar which is displayed at the bottom of the Dialog. It is a container object similar to a simplified GroupBox.

class : string, get
Returns "StatusBar".


In this example, a Dialog contains a StatusBar which has a height of 1.

The StatusBar contains a left-aligned message output field which dynamically adjusts to the Dialog width, and a right-aligned ProgressBar which may be made visible when needed.

Dialog example
{
   ...

   StatusBar status
   {
      .h = 1

      EditText message
      {
         .xauto = 0
         .xleft = 0
         .xright = 10
         .y = 0
         .h = 1
         .editable = 0
      }

      ProgressBar progress
      {
         .xauto = -1
         .xright = 0
         .w = 10
         .y = 0
         .h = 1
         .visible = 0
      }
   }
}


 
 
 
  Privacy | Webmaster | Terms of use | Impressum Revision: 2023-02-22  
  Copyright © 1995-2021 Marxmeier Software AG