Source for file GradientDirection.php
Documentation is available at GradientDirection.php
* <p>Title: GradientDirection class</p>
* <p>Description: Describes the possible values of Gradient Direction.</p>
* <p>Copyright (c) 2005-2008 by Steema Software SL. All Rights Reserved.</p>
* <p>Company: Steema Software SL</p>
private static $upperBound= 0;
private static $values = Array();
public static $VERTICAL = 0;
public static $HORIZONTAL = 1;
public static $ELLIPSE = 2;
public static $ELLIPSE2 = 3;
public static $CIRCLE = 4;
public static $CIRCLE2 = 5;
public static $SQUARE = 6;
public static $RECTANGLE = 7;
public static $DIAMOND = 8;
// TODO public static $FORWARDDIAGONAL = 2;
// TODO public static $BACKDIAGONAL = 3;
// TODO public static $RADIAL = 4;
public static function size() { return $this->upperBound; }
/*public static atIndex($index) {
return (GradientDirection)values.get(index);
|