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