Source for file ValueListOrder.php
Documentation is available at ValueListOrder.php
* Description: Describes the possible values of the ValueList.Order
* @copyright (c) 1995-2010 by Steema Software SL. All Rights Reserved. <info@steema.com>
* @link http://www.steema.com
* Values are ordered in the order in which they were added to the
* Values are ordered in ascending numerical order.
public static $ASCENDING = 1;
* Values are ordered in descending numerical order.
public static $DESCENDING = 2;
|