DockPlacement.cs 154 B

123456789101112131415161718
  1. // $Id$
  2. using System;
  3. namespace Gdl
  4. {
  5. [Serializable]
  6. public enum DockPlacement
  7. {
  8. None,
  9. Top,
  10. Bottom,
  11. Right,
  12. Left,
  13. Center,
  14. Floating,
  15. }
  16. }