// // System.Web.UI.WebControls.AutoCompleteType.cs // // Authors: // Sanjay Gupta (gsanjay@novell.com) // // Copyright (C) 2004 Novell, Inc (http://www.novell.com) // // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the // "Software"), to deal in the Software without restriction, including // without limitation the rights to use, copy, modify, merge, publish, // distribute, sublicense, and/or sell copies of the Software, and to // permit persons to whom the Software is furnished to do so, subject to // the following conditions: // // The above copyright notice and this permission notice shall be // included in all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. // #if NET_2_0 namespace System.Web.UI.WebControls { public enum AutoCompleteType { None = 0, Disabled = 1, Cellular = 2, Company = 3, Department = 4, DisplayName = 5, Email = 6, FirstName = 7, Gender = 8, HomeCity = 9, HomeCountryRegion = 10, HomeFax = 11, HomePhone = 12, HomeState = 13, HomeStreetAddress = 14, HomeZipCode = 15, Homepage = 16, JobTitle = 17, LastName = 18, MiddleName = 19, Notes = 20, Office = 21, Pager = 22, BusinessCity = 23, BusinessCountryRegion = 24, BusinessFax = 25, BusinessPhone = 26, BusinessState = 27, BusinessStreetAddress = 28, BusinessUrl = 29, BusinessZipCode = 30, Search = 31, } } #endif