* @link http://www.pradosoft.com/ * @copyright Copyright © 2005-2014 PradoSoft * @license http://www.pradosoft.com/license/ * @package Prado\Web\UI\WebControls */ namespace Prado\Web\UI\WebControls; /** * TListSelectionMode class. * TListSelectionMode defines the enumerable type for the possible selection modes of a {@link TListBox}. * * The following enumerable values are defined: * - Single: single selection * - Multiple: allow multiple selection * * @author Qiang Xue * @package Prado\Web\UI\WebControls * @since 3.0.4 */ class TListSelectionMode extends \Prado\TEnumerable { const Single='Single'; const Multiple='Multiple'; }