Source for file Subtract.php
Documentation is available at Subtract.php
* <p>Title: Subtract class</p>
* <p>Description: Subtract Function.</p>
* <pre><font face="Courier" size="4">
* subtractFunction = new com.steema.teechart.functions.Subtract();
* subtractFunction.setChart(myChart.getChart());
* subtractFunction.setPeriod(0); //all points
* <p>Copyright (c) 2005-2008 by Steema Software SL. All Rights
* <p>Company: Steema Software SL</p>
function __get( $property ) {
$method = "get{$property}";
function __set ( $property,$value ) {
$method = "set{$property}";
return $this->$method($value);
|