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