4 writes to RowHeaders
System.Windows.Forms (4)
winforms\Managed\System\WinForms\DataGridView.cs (1)
495this.layout.RowHeaders = Rectangle.Empty;
winforms\Managed\System\WinForms\DataGridViewLayoutData.cs (1)
50this.RowHeaders = src.RowHeaders;
winforms\Managed\System\WinForms\DataGridViewMethods.cs (2)
4383newLayout.RowHeaders = rowHeaders; 4411newLayout.RowHeaders = Rectangle.Empty;
32 references to RowHeaders
System.Windows.Forms (32)
winforms\Managed\System\WinForms\DataGridView.cs (1)
4960Invalidate(this.layout.RowHeaders);
winforms\Managed\System\WinForms\DataGridViewLayoutData.cs (2)
50this.RowHeaders = src.RowHeaders; 76sb.Append(RowHeaders.ToString());
winforms\Managed\System\WinForms\DataGridViewMethods.cs (29)
932Debug.Assert(this.layout.Data.Width == this.layout.Inside.Width - this.layout.RowHeaders.Width - (this.SingleVerticalBorderAdded ? 1 : 0)); 2775Rectangle clip = Rectangle.Union(this.layout.RowHeaders, this.layout.Data); 2808Rectangle clip = Rectangle.Union(this.layout.RowHeaders, this.layout.Data); 4915columnX = this.layout.RowHeaders.Left - 1; 4919columnX = this.layout.RowHeaders.Left; 6325delta = this.layout.RowHeaders.Right - this.RowHeadersWidth - x - 1; 6330delta = x - this.layout.RowHeaders.X - this.RowHeadersWidth + 1; 7115columnRect = this.layout.RowHeaders; 8662rectScrollingArea = Rectangle.Union(rectScrollingArea, this.layout.RowHeaders); 9187rowRect.Width += this.layout.RowHeaders.Width; 9190rowRect.X -= this.layout.RowHeaders.Width; 9543if (this.layout.RowHeaders.Contains(x, y)) 9557hti.colStart = this.layout.RowHeaders.Right-1; 9561hti.colStart = this.layout.RowHeaders.Left; 9600else if ((!this.RightToLeftInternal && this.layout.RowHeaders.Right - x < DATAGRIDVIEW_columnSizingHotZone) || 9601(this.RightToLeftInternal && x - this.layout.RowHeaders.Left < DATAGRIDVIEW_columnSizingHotZone)) 9609hti.mouseBarOffset = this.layout.RowHeaders.Left - x - 1; 9613hti.mouseBarOffset = this.layout.RowHeaders.Right - x - 1; 10375this.layout.RowHeaders.Height -= horizScrollBarHeight; 10376Debug.Assert(this.layout.RowHeaders.Height >= 0); 17192gridRect = Rectangle.Union(gridRect, this.layout.RowHeaders); 18650Invalidate(Rectangle.Union(this.layout.TopLeftHeader, this.layout.RowHeaders)); 19799rcNextRows.X += this.layout.RowHeaders.Width; 19801rcNextRows.Width -= this.layout.RowHeaders.Width; 26437rowsRect = Rectangle.Union(rowsRect, this.layout.RowHeaders); 26476rowsRect.Width = this.layout.RowHeaders.Width; 29015Invalidate(this.layout.RowHeaders); 29061bottomArea = Rectangle.Union(bottomArea, this.layout.RowHeaders); 29125bottomArea = Rectangle.Union(bottomArea, this.layout.RowHeaders);