2 writes to All
System.Windows.Forms (1)
System\Windows\Forms\Controls\DataGridView\DataGridViewCellStyle.cs (1)
271value.All = 0;
System.Windows.Forms.Primitives (1)
System\Windows\Forms\Padding.cs (1)
171private void ResetAll() => All = 0;
12 references to All
System.Windows.Forms (6)
System\Windows\Forms\Controls\DataGridView\DataGridViewCellStyle.cs (2)
268if (value.All != -1) 270Debug.Assert(value.All < -1);
System\Windows\Forms\Layout\LayoutUtils.cs (2)
143if (padding.All < 0) 414if (padding.All != -1)
System\Windows\Forms\Scrolling\ScrollableControl.DockPaddingEdgesConverter.cs (2)
64if (_owner.Padding.All == -1 74return _owner.Padding.All;
System.Windows.Forms.Primitives (6)
System\Windows\Forms\Padding.cs (2)
197Debug.Assert(All == Left && Left == Top && Top == Right && Right == Bottom, "_all is true, but All/Left/Top/Right/Bottom inconsistent."); 201Debug.Assert(All == -1, "_all is false, but All != -1.");
System\Windows\Forms\PaddingConverter.cs (4)
59new object[] { padding.All }) 86int all = (int)propertyValues[nameof(Padding.All)]!; 87if (originalPadding.All != all) 115return properties.Sort([nameof(Padding.All), nameof(Padding.Left), nameof(Padding.Top), nameof(Padding.Right), nameof(Padding.Bottom)]);