| 12345678910111213141516171819202122232425 |
- //
- // System.Drawing.Drawing2D.DashStyle.cs
- //
- // Author:
- // Dennis Hayes ([email protected])
- //
- // (C) 2002/3 Ximian, Inc
- //
- using System;
- namespace System.Drawing.Drawing2D
- {
- /// <summary>
- /// Summary description for DashStyle.
- /// </summary>
- [Serializable]
- public enum DashStyle {
- Custom = 5,
- Dash = 1,
- DashDot = 3,
- DashDotDot = 4,
- Dot = 2,
- Solid = 0
- }
- }
|