Free cookie consent management tool by TermsFeed Policy Generator

source: tags/3.3.1/HeuristicLab.ExtLibs/HeuristicLab.WinFormsUI/2.3.1/WinFormsUI-2.3.1/Docking/Enums.cs @ 4537

Last change on this file since 4537 was 4068, checked in by swagner, 14 years ago

Sorted usings and removed unused usings in entire solution (#1094)

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