Source for file StringAlignment.php
Documentation is available at StringAlignment.php
* Description: String alignment options
* @copyright Copyright (c) 1995-2008 by Steema Software SL. All Rights Reserved. <info@steema.com>
* @link http://www.steema.com
public static $NEAR = 1000; //30;
public static $CENTER = 2000; //40;
public static $FAR = 3000; //50;
public static $HORIZONTAL_LEFT_ALIGN = 1;
public static $HORIZONTAL_CENTER_ALIGN = 2;
public static $HORIZONTAL_RIGHT_ALIGN = 4;
public static $VERTICAL_TOP_ALIGN = 8;
public static $VERTICAL_CENTER_ALIGN = 16;
public static $VERTICAL_BOTTOM_ALIGN = 32;
|