20 references to GrowthDirection
System.Windows.Forms (20)
winforms\Managed\System\WinForms\Layout\DockAndAnchorLayout.cs (20)
74
GrowthDirection
direction = GetGrowthDirection(element);
81
if((direction &
GrowthDirection
.Left) !=
GrowthDirection
.None) {
86
if((direction &
GrowthDirection
.Upward) !=
GrowthDirection
.None) {
98
private static
GrowthDirection
GetGrowthDirection(IArrangedElement element) {
100
GrowthDirection
growthDirection =
GrowthDirection
.None;
105
growthDirection |=
GrowthDirection
.Left;
108
growthDirection |=
GrowthDirection
.Right;
114
growthDirection |=
GrowthDirection
.Upward;
117
growthDirection |=
GrowthDirection
.Downward;
120
Debug.Assert((growthDirection &
GrowthDirection
.Left) ==
GrowthDirection
.None
121
|| (growthDirection &
GrowthDirection
.Right) ==
GrowthDirection
.None,
123
Debug.Assert((growthDirection &
GrowthDirection
.Upward) ==
GrowthDirection
.None
124
|| (growthDirection &
GrowthDirection
.Downward) ==
GrowthDirection
.None,