getStyle Manual
  returns cascading style sheet HTML_CSS object
 
 Synopsis
object getStyle()
 Description
The getStyle() method is used to retrieve style sheet 
   required to run properly the progress bar.
 Example
Example below will print inline cascading style sheet of a default progress bar. 
   <?php
 
require_once ('HTML/Progress.php');
 
 
 
$bar = new HTML_Progress();
 
 
 
$ui =& $bar->getUI();
 
$css =& $ui->getStyle();
 
 
 
print '<pre>';
 
echo '<b>object</b><br/>';
 
echo '<b>plain text</b><br/>';
 
print '</pre>';
 
?>
 
 See Also
setProgressAttributes Manual, 
   setBorderAttributes Manual,
   setStringAttributes Manual,
   setCellAttributes Manual