* @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; /** * TTextBoxAutoCompleteType class. * TTextBoxAutoCompleteType defines the possible AutoComplete type that is supported * by a {@link TTextBox} control. * * @author Qiang Xue * @package Prado\Web\UI\WebControls * @since 3.0.4 */ class TTextBoxAutoCompleteType extends TEnumerable { const BusinessCity='BusinessCity'; const BusinessCountryRegion='BusinessCountryRegion'; const BusinessFax='BusinessFax'; const BusinessPhone='BusinessPhone'; const BusinessState='BusinessState'; const BusinessStreetAddress='BusinessStreetAddress'; const BusinessUrl='BusinessUrl'; const BusinessZipCode='BusinessZipCode'; const Cellular='Cellular'; const Company='Company'; const Department='Department'; const Disabled='Disabled'; const DisplayName='DisplayName'; const Email='Email'; const FirstName='FirstName'; const Gender='Gender'; const HomeCity='HomeCity'; const HomeCountryRegion='HomeCountryRegion'; const HomeFax='HomeFax'; const Homepage='Homepage'; const HomePhone='HomePhone'; const HomeState='HomeState'; const HomeStreetAddress='HomeStreetAddress'; const HomeZipCode='HomeZipCode'; const JobTitle='JobTitle'; const LastName='LastName'; const MiddleName='MiddleName'; const None='None'; const Notes='Notes'; const Office='Office'; const Pager='Pager'; const Search='Search'; }