20 references to GrowthDirection
System.Windows.Forms (20)
System\Windows\Forms\Layout\DefaultLayout.cs (20)
79
GrowthDirection
direction = GetGrowthDirection(element);
86
if ((direction &
GrowthDirection
.Left) !=
GrowthDirection
.None)
92
if ((direction &
GrowthDirection
.Upward) !=
GrowthDirection
.None)
108
private static
GrowthDirection
GetGrowthDirection(IArrangedElement element)
111
GrowthDirection
growthDirection =
GrowthDirection
.None;
117
growthDirection |=
GrowthDirection
.Left;
122
growthDirection |=
GrowthDirection
.Right;
129
growthDirection |=
GrowthDirection
.Upward;
134
growthDirection |=
GrowthDirection
.Downward;
137
Debug.Assert((growthDirection &
GrowthDirection
.Left) ==
GrowthDirection
.None
138
|| (growthDirection &
GrowthDirection
.Right) ==
GrowthDirection
.None,
140
Debug.Assert((growthDirection &
GrowthDirection
.Upward) ==
GrowthDirection
.None
141
|| (growthDirection &
GrowthDirection
.Downward) ==
GrowthDirection
.None,