getFillWay Manual
  returns the fill way of the progress bar
 
 Synopsis
string getFillWay()
 Description
The getFillWay() method is used to know how the progress bar
   is filled.
   It could be natural (left to right for horizontal progress bar),
   (down to up for vertical progress bar) or reverse 
   (right to left for horizontal progress bar), (up to down for vertical progress bar).
 Example
<?php
 
require_once ('HTML/Progress.php');
 
 
 
$bar = new HTML_Progress();
 
 
 
$ui =& $bar->getUI();
 
$ui->setFillWay('reverse');
 
 
 
print('this progress bar will be filled in ' . $ui->getFillWay() . ' way');
 
?>
 
   
Output will display string(7) "reverse".
 See Also
setFillWay Manual