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