| 12345678910111213141516171819202122 |
- //
- // System.Drawing.Drawing2D.PenAlignment.cs
- //
- // Author:
- // Miguel de Icaza ([email protected])
- // Dennis Hayes ([email protected])
- // (C) 2002/3 Ximian, Inc http://www.ximian.com
- //
- using System;
- namespace System.Drawing.Drawing2D {
- [Serializable]
- public enum PenAlignment {
- Center = 0,
- Inset = 1,
- Outset = 2,
- Left = 3,
- Right =4
- }
- }
|