123456789101112131415161718192021222324252627282930313233343536 |
- using System;
- namespace Microsoft.Windows.Forms
- {
-
-
-
- [Flags]
- public enum BorderVisibleStyle : int
- {
-
-
-
- None = 0x0000,
-
-
-
- Left = 0x0001,
-
-
-
- Top = 0x0002,
-
-
-
- Right = 0x0004,
-
-
-
- Bottom = 0x0008,
-
-
-
- All = 0x000F,
- }
- }
|