PageRenderTime 13ms CodeModel.GetById 9ms RepoModel.GetById 0ms app.codeStats 1ms

/IZWebFileManager/OuterBorderStyle.cs

http://izwebfilemanager.googlecode.com/
C# | 35 lines | 18 code | 2 blank | 15 comment | 0 complexity | 165a4ebcc58320a6ca87b75f246c8ee7 MD5 | raw file
  1. // Copyright (C) 2006 Igor Zelmanovich <izwebfilemanager@gmail.com>
  2. //
  3. // This program is free software; you can redistribute it and/or modify
  4. // it under the terms of the GNU General Public License as published by
  5. // the Free Software Foundation; either version 2 of the License, or
  6. // (at your option) any later version.
  7. //
  8. // This program is distributed in the hope that it will be useful,
  9. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. // GNU General Public License for more details.
  12. //
  13. // You should have received a copy of the GNU General Public License
  14. // along with this program; if not, write to the Free Software
  15. // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  16. using System;
  17. using System.Collections.Generic;
  18. using System.Text;
  19. namespace IZ.WebFileManager
  20. {
  21. [Flags]
  22. public enum OuterBorderStyle
  23. {
  24. None = 0x00,
  25. Top = 0x01,
  26. Bottom = 0x02,
  27. Left = 0x04,
  28. Right = 0x08,
  29. TopAndBottom = 0x03,
  30. LeftAndRight = 0x0C,
  31. AllSides = 0x0F
  32. }
  33. }