kick off
[mono.git] / mcs / class / Microsoft.VisualBasic / Microsoft.VisualBasic / VbStrConv.cs
1 //\r
2 // VbStrConv.cs\r
3 //\r
4 // Authors:\r
5 //   Martin Adoue (martin@cwanet.com)\r
6 //   Chris J Breisch (cjbreisch@altavista.net) (auto-generated by ClassGenerator)\r
7 //\r
8 // (C) 2002 Ximian Inc.\r
9 //\r
10 \r
11 using System;\r
12 \r
13 namespace Microsoft.VisualBasic\r
14 {\r
15         /// <summary>\r
16         /// When you call the StrConv function, you can use the following enumeration \r
17         /// members in your code in place of the actual values.\r
18         /// </summary>\r
19         [System.FlagsAttribute] \r
20         public enum VbStrConv : int {\r
21                 /// <summary>\r
22                 /// Performs no conversion \r
23                 /// </summary>\r
24                 None = 0,\r
25                 /// <summary>\r
26                 /// Uses linguistic rules for casing, rather than File System (default). Valid with UpperCase and LowerCase only. \r
27                 /// </summary>\r
28                 LinguisticCasing = 1024,\r
29                 /// <summary>\r
30                 /// Converts the string to uppercase characters. \r
31                 /// </summary>\r
32                 UpperCase = 1,\r
33                 /// <summary>\r
34                 /// Converts the string to lowercase characters. \r
35                 /// </summary>\r
36                 LowerCase = 2,\r
37                 /// <summary>\r
38                 /// Converts the first letter of every word in string to uppercase.\r
39                 /// </summary>\r
40                 ProperCase = 3,\r
41                 /// <summary>\r
42                 /// Converts narrow (half-width) characters in the string to wide (full-width) characters. (Applies to Asian locales.)\r
43                 /// </summary>\r
44                 Wide = 4,                                       //*  \r
45                 /// <summary>\r
46                 /// Converts wide (full-width) characters in the string to narrow (half-width) characters. (Applies to Asian locales.)\r
47                 /// </summary>\r
48                 Narrow = 8,                                     //*  \r
49                 /// <summary>\r
50                 /// Converts Hiragana characters in the string to Katakana characters. (Applies to Japan only.)\r
51                 /// </summary>\r
52                 Katakana = 16,                          //**  \r
53                 /// <summary>\r
54                 /// Converts Katakana characters in the string to Hiragana characters. (Applies to Japan only.)\r
55                 /// </summary>\r
56                 Hiragana = 32,                          //** \r
57                 /// <summary>\r
58                 /// Converts Traditional Chinese characters to Simplified Chinese. (Applies to Asian locales.)\r
59                 /// </summary>\r
60                 SimplifiedChinese =256,         //*  \r
61                 /// <summary>\r
62                 /// Converts Simplified Chinese characters to Traditional Chinese. (Applies to Asian locales.)\r
63                 /// </summary>\r
64                 TraditionalChinese = 512        //*  \r
65                 /*\r
66                 \r
67                 *   Applies to Asian locales.\r
68                 **  Applies to Japan only.\r
69                 \r
70                 */\r
71         }\r
72 \r
73 }\r