getAnimSpeed Manual
returns delay execution of the progress bar
Synopsis
integer getAnimSpeed()
Description
The getAnimSpeed() method is used to retrieve
progress bar delay execution. Default value is zero (no delay).
Example
Example below will print the default execution delay of progress bar.
<?php
require_once ('HTML/Progress.php');
$bar = new HTML_Progress();
print('delay progress bar execution = ' . $bar->getAnimSpeed());
?>
See Also
setAnimSpeed Manual