4 writes to RowHeaderWidth
System.Windows.Forms (4)
winforms\Managed\System\WinForms\DataGrid.cs (3)
687this.myGridTable.RowHeaderWidth += errorRowBitmapWidth; 693this.myGridTable.RowHeaderWidth -= errorRowBitmapWidth; 1691this.myGridTable.RowHeaderWidth = Math.Max(this.minRowHeaderWidth, this.RowHeaderWidth);
winforms\Managed\System\WinForms\DataGridTableCollection.cs (1)
193table.RowHeaderWidth = this.owner.MinimumRowHeaderWidth();
7 references to RowHeaderWidth
System.Windows.Forms (7)
winforms\Managed\System\WinForms\DataGrid.cs (1)
5398int newRowHeaderWidth = this.myGridTable.IsDefault ? this.RowHeaderWidth : this.myGridTable.RowHeaderWidth;
winforms\Managed\System\WinForms\DataGridRelationshipRow.cs (5)
272int rowHeaderWidth = this.dgTable.IsDefault ? this.DataGrid.RowHeaderWidth : this.dgTable.RowHeaderWidth; 360relRect.X += rowHeaders.X + this.dgTable.RowHeaderWidth; 438relRect.X += rowHeaders.X + this.dgTable.RowHeaderWidth; 479relRect.X += rowHeaders.X + this.dgTable.RowHeaderWidth; 504relRect.X += rowHeaders.X + this.dgTable.RowHeaderWidth;
winforms\Managed\System\WinForms\DataGridTableCollection.cs (1)
192if (this.owner != null && this.owner.MinimumRowHeaderWidth() > table.RowHeaderWidth)