Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Panel
titleGeneral

Image Modified

Component Palette Icon:

Image Modified

Panel
borderStylesolid
titleDescription
On_this_page


Visually indicates the progress of

some

a task. Can be used to display any value that has an upper and lower bound.

Paneltitle

Properties

NameDescriptionProperty TypeScriptingCategory
Background ColorThe background color of the component. Can be chosen from color wheel, chosen from color palette, or entered as RGB or HSL value. See  Color Selector .Color.backgroundAppearance
Border

The border surrounding this component. Options are: No border, Etched (Lowered), Etched (Raised), Bevel (Lowered), Bevel (Raised), Bevel (Double),

Button Border,

Field Border, Line Border

, and Other Border

.

Note_friendly

The border is unaffected by rotation.

Changed_in
Version8.1.21


As of 8.1.21, the "Button Border" and "Other Border" options are removed.
Border.borderCommon
CursorThe mouse cursor to use when hovering over this component. Options are: Default, Crosshair, Text, Wait, Hand, Move, SW Resize, or SE Resize.int.cursorCodeCommon
DirectionDetermines the direction of progress for this progress bar.int.directionAppearance
EnabledIf disabled, a component cannot be used.boolean.componentEnabledCommon
FontFont of text on this component.Font.fontAppearance
Foreground ColorThe foreground color of the component. See  Color Selector .Color.foregroundAppearance
Horizontal?If true, the progress bar will display horizontally, else it will display vertically. Manually resize the progress bar to display vertically. boolean.horizontalAppearance
Indeterminate?When true, the progress bar displays animation indicating that something is happening, but it will take an indeterminate amount of timeboolean.indeterminateBehavior
MaximumThe maximum value that this progress bar will reach.int.maximumData
MinimumThe minimum value that this progress bar will reach.int.minimumData
Mouseover TextThe text that is displayed in the tooltip which pops up on mouseover of this component.String.toolTipTextCommon
NameThe name of this component.String.nameCommon
QualityThe data quality code for any Tag bindings on this component.QualityCode.qualityData
Show Percentage?If true, the progress bar will display its percentage.boolean.stringPaintedAppearance
StylesContains the component's styles.Dataset.stylesAppearance
Text Color
New_in
Version8.1.8


The color of the text on the progress bar.

Color.textColorAppearance
ValueThe current state of the Progress Bar.int.valueData
VisibleIf disabled, the component will be hidden.boolean.visibleCommon
Deprecated Properties
Data QualityThe data quality code for any Tag bindings on this component.int.dataQualityDeprecated

panel

title

Scripting

PaneltitleScripting

Component Functions

This component does not have

scripting

component functions associated with it.

Paneltitle

Extension Functions

This component does not have extension functions associated with it.
Panel
titleEvent Handlers
Expand
titlemouse
Expand
titlemouseClicked

This event signifies a mouse click on the source component. A mouse click the combination of a mouse press and a mouse release, both of which must have occurred over the source component.

Note_friendly

This event fires after the pressed and released events have fired.

.sourceThe component that fired this event.buttonThe code for the button that caused this event to fire..clickCountThe number of mouse clicks associated with this event..xThe x-coordinate (with respect to the source component) of this mouse event..yThe y-coordinate (with respect to the source component) of this mouse event..popupTriggerReturns True (1) if this mouse event is a popup trigger. What constitutes a popup trigger is operating system dependent, which is why this abstraction exists..altDownTrue (1) if the Alt key was held down during this event, false (0) otherwise..controlDownTrue (1) if the Control key was held down during this event, false (0) otherwise..shiftDownTrue (1) if the Shift key was held down during this event, false (0) otherwise. Expand
titlemouseEntered

This event fires when the mouse enters the space over the source component.

.sourceThe component that fired this event.buttonThe code for the button that caused this event to fire..clickCountThe number of mouse clicks associated with this event..xThe x-coordinate (with respect to the source component) of this mouse event..yThe y-coordinate (with respect to the source component) of this mouse event..popupTriggerReturns True (1) if this mouse event is a popup trigger. What constitutes a popup trigger is operating system dependent, which is why this abstraction exists..altDownTrue (1) if the Alt key was held down during this event, false (0) otherwise..controlDownTrue (1) if the Control key was held down during this event, false (0) otherwise..shiftDownTrue (1) if the Shift key was held down during this event, false (0) otherwise. Expand
titlemouseExited

This event fires when the mouse leaves the space over the source component.

.sourceThe component that fired this event.buttonThe code for the button that caused this event to fire..clickCountThe number of mouse clicks associated with this event..xThe x-coordinate (with respect to the source component) of this mouse event..yThe y-coordinate (with respect to the source component) of this mouse event..popupTriggerReturns True (1) if this mouse event is a popup trigger. What constitutes a popup trigger is operating system dependent, which is why this abstraction exists..altDownTrue (1) if the Alt key was held down during this event, false (0) otherwise..controlDownTrue (1) if the Control key was held down during this event, false (0) otherwise..shiftDownTrue (1) if the Shift key was held down during this event, false (0) otherwise. Expand
titlemousePressed

This event fires when a mouse button is pressed down on the source component.

.sourceThe component that fired this event.buttonThe code for the button that caused this event to fire..clickCountThe number of mouse clicks associated with this event..xThe x-coordinate (with respect to the source component) of this mouse event..yThe y-coordinate (with respect to the source component) of this mouse event..popupTriggerReturns True (1) if this mouse event is a popup trigger. What constitutes a popup trigger is operating system dependent, which is why this abstraction exists..altDownTrue (1) if the Alt key was held down during this event, false (0) otherwise..controlDownTrue (1) if the Control key was held down during this event, false (0) otherwise..shiftDownTrue (1) if the Shift key was held down during this event, false (0) otherwise. Expand
titlemouseReleased

This event fires when a mouse button is released, if that mouse button's press happened over this component.

.sourceThe component that fired this event.buttonThe code for the button that caused this event to fire..clickCountThe number of mouse clicks associated with this event..xThe x-coordinate (with respect to the source component) of this mouse event..yThe y-coordinate (with respect to the source component) of this mouse event..popupTriggerReturns True (1) if this mouse event is a popup trigger. What constitutes a popup trigger is operating system dependent, which is why this abstraction exists..altDownTrue (1) if the Alt key was held down during this event, false (0) otherwise..controlDownTrue (1) if the Control key was held down during this event, false (0) otherwise..shiftDownTrue (1) if the Shift key was held down during this event, false (0) otherwise. Expand
titlemouseMotion
Expand
titlemouseDragged

Fires when the mouse moves over a component after a button has been pushed.

.sourceThe component that fired this event.buttonThe code for the button that caused this event to fire..clickCountThe number of mouse clicks associated with this event..xThe x-coordinate (with respect to the source component) of this mouse event..yThe y-coordinate ( with respect to the source component) of this mouse event..popupTriggerReturns True (1) if this mouse event is a popup trigger. What constitutes a popup trigger is operating system dependent, which is why this abstraction exists..altDownTrue (1) if the Alt key was held down during this event, false (0) otherwise..controlDownTrue (1) if the Control key was held down during this event, false (0) otherwise..shiftDownTrue (1) if the Shift key was held down during this event, false (0) otherwise. Expand
titlemouseMoved

Fires when the mouse moves over a component, but no buttons are pushed.

.sourceThe component that fired this event.buttonThe code for the button that caused this event to fire..clickCountThe number of mouse clicks associated with this event..xThe x-coordinate (with respect to the source component) of this mouse event..yThe y-coordinate (with respect to the source component) of this mouse event..popupTriggerReturns True (1) if this mouse event is a popup trigger. What constitutes a popup trigger is operating system dependent, which is why this abstraction exists..altDownTrue (1) if the Alt key was held down during this event, false (0) otherwise..controlDownTrue (1) if the Control key was held down during this event, false (0) otherwise..shiftDownTrue (1) if the Shift key was held down during this event, false (0) otherwise. Expand
titlepropertyChange
Expand
titlepropertyChange

Fires whenever a bindable property of the source component changes. This works for standard and custom (dynamic) properties.

.sourceThe component that fired this event.newValueThe new value for this property..oldValueThe value that this property was before it changed. Not all components include an accurate oldValue in their events..propertyName

The name of the property that changed.

Note_friendlyRemember to always filter out these events for the property that you are looking for. Components often have many properties that change.  Paneltitle

Examples

Gallery
Panel
titleHorizontal Blue Progress Bar

Image Modified

Property NameValue
BorderLine Border
Value85
Foreground Color0,0,255
Horizontal?True
Show Percentage?True
Panel
title
Panel
titleWide Vertical Blue Progress Bar

Image Modified

Property NameValue
BorderBevel (Double)
Value85
Foreground Color0,0,255
Horizontal?False
Show Percentage?True