20 references to GrowthDirection
System.Windows.Forms (20)
System\Windows\Forms\Layout\DefaultLayout.cs (20)
80
GrowthDirection
direction = GetGrowthDirection(element);
87
if ((direction &
GrowthDirection
.Left) !=
GrowthDirection
.None)
93
if ((direction &
GrowthDirection
.Upward) !=
GrowthDirection
.None)
109
private static
GrowthDirection
GetGrowthDirection(IArrangedElement element)
112
GrowthDirection
growthDirection =
GrowthDirection
.None;
118
growthDirection |=
GrowthDirection
.Left;
123
growthDirection |=
GrowthDirection
.Right;
130
growthDirection |=
GrowthDirection
.Upward;
135
growthDirection |=
GrowthDirection
.Downward;
138
Debug.Assert((growthDirection &
GrowthDirection
.Left) ==
GrowthDirection
.None
139
|| (growthDirection &
GrowthDirection
.Right) ==
GrowthDirection
.None,
141
Debug.Assert((growthDirection &
GrowthDirection
.Upward) ==
GrowthDirection
.None
142
|| (growthDirection &
GrowthDirection
.Downward) ==
GrowthDirection
.None,