// // System.Windows.Forms.Border3DSide.cs // // Author: // Dennis Hayes (dennish@raytek.com) // // (C) 2002 Ximian, Inc. http://www.ximian.com // using System.Runtime.InteropServices; namespace System.Windows.Forms { [Flags] [ComVisible (true)] public enum Border3DSide { All = 2063, Bottom = 8, Left = 1, Middle = 2048, Right = 4, Top = 2 } }