ProgressIndicator

The ProgressIndicator is a View subclass that represents Cocoa’s NSProgressIndicator.

class ProgressIndicator(parent)
Parameters:parent – A View instance. See View.parent.
style

Cocoa constant. The type of the indicator. Equivalent to [self style]. Use with NSProgressIndicatorStyle constants.

minValue

Numeric. Minimum value of the indicator. Equivalent to [self minValue].

maxValue

Numeric. Maximum value of the indicator. Equivalent to [self maxValue].

value

Numeric. Current value of the indicator. Equivalent to [self doubleValue].

indeterminate

Boolean. Whether the indicator has a determinate progress value. Equivalent to [self isDeterminate].

displayedWhenStopped

Boolean. Whether the indicator displays its progress when not animated. Equivalent to [self isDisplayedWhenStopped].

Previous topic

RadioButtons

Next topic

ImageView

This Page