1 //------------------------------------------------------------------------------
2 // <copyright file="AutoCompleteType.cs" company="Microsoft">
3 //     Copyright (c) Microsoft Corporation.  All rights reserved.
4 // </copyright>
5 //------------------------------------------------------------------------------
6 
7 namespace System.Web.UI.WebControls {
8 
9 
10     public enum AutoCompleteType {
11 
12         None = 0,
13 
14         Disabled = 1,
15 
16         Cellular = 2,
17 
18         Company = 3,
19 
20         Department = 4,
21 
22         DisplayName = 5,
23 
24         Email = 6,
25 
26         FirstName = 7,
27 
28         Gender = 8,
29 
30         HomeCity = 9,
31 
32         HomeCountryRegion = 10,
33 
34         HomeFax = 11,
35 
36         HomePhone = 12,
37 
38         HomeState = 13,
39 
40         HomeStreetAddress = 14,
41 
42         HomeZipCode = 15,
43 
44         Homepage = 16,
45 
46         JobTitle = 17,
47 
48         LastName = 18,
49 
50         MiddleName = 19,
51 
52         Notes = 20,
53 
54         Office = 21,
55 
56         Pager = 22,
57 
58         BusinessCity = 23,
59 
60         BusinessCountryRegion = 24,
61 
62         BusinessFax = 25,
63 
64         BusinessPhone = 26,
65 
66         BusinessState = 27,
67 
68         BusinessStreetAddress = 28,
69 
70         BusinessUrl = 29,
71 
72         BusinessZipCode = 30,
73 
74         Search = 31,
75 
76         Enabled = 32//This should be the last one
77     }
78 }
79 
80