HTML_Progress
[ class tree: HTML_Progress ] [ index: HTML_Progress ] [ all elements ]
Prev Next
HTML_Progress::getValue
returns the current progress meter value

Synopsis

require_once 'HTML/Progress.php';

int HTML_Progress::getValue()

Description

This method is used to retrieve the current value in the mathematical model of the progress meter.

Note

( HTML_Progress >= 1.0 )

This function can not be called statically.

This method is also a wrapper for HTML_Progress_DM::getValue.

See

HTML_Progress::setValue, HTML_Progress::incValue

Example

  1. <?php
  2. require_once 'HTML/Progress.php';
  3.  
  4. $bar = new HTML_Progress();
  5.  
  6. printf('direct way: value = %d <br/>', $bar->getValue());
  7.  
  8. $dm =& $bar->getDM();
  9. printf('another way: value = %d <br/>', $dm->getValue());
  10. ?>

Prev Up Next
HTML_Progress::setMinimum Reference Guide HTML_Progress::setValue

Documentation generated on Sun, 12 Sep 2004 20:23:17 +0200 by phpDocumentor 1.3.0RC3