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