Source for file ShapeStyle.php
Documentation is available at ShapeStyle.php
* Description: Describes the possible values of the Shape.Style method
* @copyright (c) 1995-2008 by Steema Software SL. All Rights Reserved. <info@steema.com>
* @link http://www.steema.com
* The shape is a rectangle.
public static $RECTANGLE = 0;
public static $CIRCLE = 1;
* The shape is a vertical line.
public static $VERTLINE = 2;
* The shape is a horizontal line.
public static $HORIZLINE = 3;
* The shape is a triangle.
public static $TRIANGLE = 4;
* The shape is an inverted triangle.
public static $INVERTTRIANGLE = 5;
* The shape is a diamond.
public static $DIAMOND = 7;
public static $CROSS = 9;
* The shape is a diagonal cross.
public static $DIAGCROSS = 10;
public static $STAR = 11;
* The shape is a pyramid.
public static $PYRAMID = 12;
* The shape is an inverted pyramid.
public static $INVERTPYRAMID = 13;
|