5 writes to Height
System.Windows.Forms (2)
System\Windows\Forms\Controls\DataGridView\DataGridView.Methods.cs (1)
527Rows[rowIndex].Height = preferredHeight; // un-sharing the row to be resized
System\Windows\Forms\Controls\DataGridView\DataGridViewRow.cs (1)
1736Height = DefaultHeight;
System.Windows.Forms.Design (3)
System\Windows\Forms\Design\DataGridViewCellStyleBuilder.cs (3)
306_sampleDataGridView.Rows[0].Height = _sampleDataGridView.Height; 309_sampleDataGridViewSelected.Rows[0].Height = _sampleDataGridViewSelected.Height; 332dataGridView.Rows[0].Height = dataGridView.Height;
6 references to Height
PresentationUI (1)
MS\Internal\Documents\RMPublishingDialog.RightsTable.cs (1)
487Height = this.RowTemplate.Height * 4 + this.ColumnHeadersHeight + 2;
System.Windows.Forms (5)
System\Windows\Forms\Controls\DataGridView\DataGridView.Methods.cs (1)
525if (Rows.SharedRow(rowIndex).Height < preferredHeight)
System\Windows\Forms\Controls\DataGridView\DataGridViewCell.cs (2)
2728int width = GetPreferredWidth(rowIndex, OwningRow.Height); 2731if (OwningColumn.Width < width || OwningRow.Height < height)
System\Windows\Forms\Controls\DataGridView\DataGridViewRow.cs (2)
220throw new InvalidOperationException(string.Format(SR.DataGridView_InvalidPropertySetOnSharedRow, nameof(Height))); 1817return Height != DefaultHeight;