Difference between revisions of "Lua:Class:ProgressBar"

From Cheat Engine
Jump to navigation Jump to search
(Page creation.)
 
Line 3: Line 3:
  
 
Properties:
 
Properties:
Min: integer - The minimum positionvalue the progressbar can have (default 0)
+
*Min: integer - The minimum positionvalue the progressbar can have (default 0)
Max: integer - The maximum positionvalue the progressbar can have (default 100)
+
*Max: integer - The maximum positionvalue the progressbar can have (default 100)
Position: integer - The position of the progressbar
+
*Position: integer - The position of the progressbar
Step: integer- The stepsize to step by when stepIt() is called
+
*Step: integer- The stepsize to step by when stepIt() is called
  
Methods:
+
*Methods:
stepIt() - Increase position with "Step" size
+
*stepIt() - Increase position with "Step" size
stepBy(integer) - increase the position by the given integer value
+
*stepBy(integer) - increase the position by the given integer value
getMax() - returns the Max property
+
*getMax() - returns the Max property
setMax(integer) - sets the max property
+
*setMax(integer) - sets the max property
getMin() - returns the min property
+
*getMin() - returns the min property
setMin(integer)- sets the min property
+
*setMin(integer)- sets the min property
getPosition() - returns the current position
+
*getPosition() - returns the current position
setPosition(integer) - sets the current position
+
*setPosition(integer) - sets the current position

Revision as of 13:49, 17 January 2014

ProgressBar Class: (Inheritance: WinControl->Control->Component->Object) createProgressBar(owner): Creates a ProgressBar class object which belongs to the given owner. Owner can be any object inherited from WinControl

Properties:

  • Min: integer - The minimum positionvalue the progressbar can have (default 0)
  • Max: integer - The maximum positionvalue the progressbar can have (default 100)
  • Position: integer - The position of the progressbar
  • Step: integer- The stepsize to step by when stepIt() is called
  • Methods:
  • stepIt() - Increase position with "Step" size
  • stepBy(integer) - increase the position by the given integer value
  • getMax() - returns the Max property
  • setMax(integer) - sets the max property
  • getMin() - returns the min property
  • setMin(integer)- sets the min property
  • getPosition() - returns the current position
  • setPosition(integer) - sets the current position