12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- using System;
- namespace Microsoft.Windows.Forms
- {
-
-
-
- [Flags]
- public enum CornerStyle : int
- {
-
-
-
- None = 0x0000,
-
-
-
- LeftIn = 0x0001,
-
-
-
- TopIn = 0x0002,
-
-
-
- RightIn = 0x0004,
-
-
-
- BottomIn = 0x0008,
-
-
-
- LeftOut = 0x0010,
-
-
-
- TopOut = 0x0020,
-
-
-
- RightOut = 0x0040,
-
-
-
- BottomOut = 0x0080,
-
-
-
- Horizontal = 0x0055,
-
-
-
- Vertical = 0x00AA,
- }
- }
|