Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.ExtLibs/HeuristicLab.WinFormsUI/2.3.1/WinFormsUI-2.3.1/Docking/Enums.cs @ 2645

Last change on this file since 2645 was 2645, checked in by mkommend, 14 years ago

extracted external libraries and adapted dependent plugins (ticket #837)

File size: 1010 bytes
Line 
1using System;
2using System.ComponentModel;
3using System.Windows.Forms;
4
5namespace WeifenLuo.WinFormsUI.Docking
6{
7  [Flags]
8  [Serializable]
9  [Editor(typeof(DockAreasEditor), typeof(System.Drawing.Design.UITypeEditor))]
10  public enum DockAreas
11  {
12    Float = 1,
13    DockLeft = 2,
14    DockRight = 4,
15    DockTop = 8,
16    DockBottom = 16,
17    Document = 32
18  }
19
20  public enum DockState
21  {
22    Unknown = 0,
23    Float = 1,
24    DockTopAutoHide = 2,
25    DockLeftAutoHide = 3,
26    DockBottomAutoHide = 4,
27    DockRightAutoHide = 5,
28    Document = 6,
29    DockTop = 7,
30    DockLeft = 8,
31    DockBottom = 9,
32    DockRight = 10,
33    Hidden = 11
34  }
35
36  public enum DockAlignment
37  {
38    Left,
39    Right,
40    Top,
41    Bottom
42  }
43
44  public enum DocumentStyle
45  {
46    DockingMdi,
47    DockingWindow,
48    DockingSdi,
49    SystemMdi,
50  }
51
52    /// <summary>
53    /// The location to draw the DockPaneStrip for Document style windows.
54    /// </summary>
55    public enum DocumentTabStripLocation
56    {
57        Top,
58        Bottom
59    }
60}
Note: See TracBrowser for help on using the repository browser.