[Properties (by Name)] [Methods (by Name)] [Events (by Name)]
Percentage Scale
Source position: MUIClass.Area.pas line 236
type TMUIScale = class(TMUIArea) |
||
protected |
||
procedure GetCreateTags(); override; |
|
Fill Tag list to create the Scale item |
public |
||
constructor Create; override; |
|
Create Scale object |
procedure CreateObject; override; |
|
Create the MUI item |
published |
||
property Horiz: Boolean; [rw] |
|
Show the scale in teh horizontal direction |
end; |
|
Percentage Scale |
|
| | ||
|
Super class for every other MUI class except windows and applications |
|
| | ||
|
Subclass of TNotify to introduce the Parent relation |
|
| | ||
|
Notify class is superclass of all other MUI classes. |
|
| | ||
|
Base class for all MUI Class |
|
| | ||
TObject |
A Scale object generates a percentage scale running from 0% to 100%. A good place for such an object is e.g. below a fuel gauge.
Depending on how much space is available, the scale will be more or less detailed.
Due to MUI's automatic layout system, you don't need to worry about it's size. When placed in a vertical group just below the object you want to scale, everything is fine.
|
Progressbar like item |