// * // * Copyright (C) 2008 Roger Alsing : http://www.RogerAlsing.com // * // * This library is free software; you can redistribute it and/or modify it // * under the terms of the GNU Lesser General Public License 2.1 or later, as // * published by the Free Software Foundation. See the included license.txt // * or http://www.gnu.org/copyleft/lesser.html for details. // * // * namespace Alsing.Windows.Forms { public enum BorderStyle { None = 0, Sunken = 1, SunkenThin = 2, Raised = 3, RaisedThin = 4, Etched = 5, Bump = 6, FixedSingle = 7, FixedDouble = 8, Dotted = 9, Dashed = 10, } public enum BorderStyle2 { None = 0, Sunken = 1, SunkenThin = 2, Raised = 3, RaisedThin = 4, Etched = 5, Bump = 6, FixedSingle = 7, FixedDouble = 8, Dotted = 9, Dashed = 10, Column = 11, Row = 12, NoCorners = 13, } }