// // System.Drawing.Drawing2D.DashStyle.cs // // Author: // Dennis Hayes (dennish@Raytek.com) // // (C) 2002/3 Ximian, Inc // using System; namespace System.Drawing.Drawing2D { /// /// Summary description for DashStyle. /// [Serializable] public enum DashStyle { Custom = 5, Dash = 1, DashDot = 3, DashDotDot = 4, Dot = 2, Solid = 0 } }