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