Struct native_windows_gui::ProgressBar [] [src]

pub struct ProgressBar { /* fields omitted */ }

A standard progress bar

Methods

impl ProgressBar
[src]

Return the current range of the progress bar

Set the extent of the progress bar control. If min is bigger than max, an error will be returned.

Return the current step of the progress bar

Set the step of the progress bar control. When step() is called, the progress bar value is increased by the value defined by step.

Return the current value of the progress bar

Set the progress bar value

Get the progress bar state

Set the progress bar state

Add amount to the progress bar value

Trait Implementations

impl Control for ProgressBar
[src]

Should return the underlying handle to the object

Should return the type of the control. For custom controls, the return value should be Undefined (the default).

If specified, should free any ressource allocated in the template build function. This includes functions like DestroyWindow.