1 write to owningRow
System.Windows.Forms (1)
winforms\Managed\System\WinForms\DataGridViewCell.cs (1)
547this.owningRow = value;
42 references to owningRow
System.Windows.Forms (42)
winforms\Managed\System\WinForms\DataGridViewCell.cs (42)
237return this.owningColumn.Displayed && this.owningRow.Displayed; 402return this.owningColumn.Frozen && this.owningRow.Frozen; 404else if (this.owningRow != null && (this.owningRow.DataGridView == null || this.RowIndex >= 0)) 406return this.owningRow.Frozen; 539return this.owningRow; 584if (this.owningRow != null && (this.owningRow.DataGridView == null || this.RowIndex >= 0) && this.owningRow.ReadOnly) 613if (this.owningRow == null) 623this.owningRow.SetReadOnlyCellCore(this, value); 659if (this.owningRow != null && (this.owningRow.DataGridView == null || this.RowIndex >= 0) && this.owningRow.Resizable == DataGridViewTriState.True) 685if (this.owningRow == null) 689return this.owningRow.Index; 707if (this.owningRow != null && (this.owningRow.DataGridView == null || this.RowIndex >= 0) && this.owningRow.Selected) 978return this.owningColumn.Visible && this.owningRow.Visible; 980else if (this.owningRow != null && (this.owningRow.DataGridView == null || this.RowIndex >= 0)) 982return this.owningRow.Visible; 1094if (this.owningRow != null) 1096rect.Height += this.owningRow.DividerHeight; 2008Debug.Assert(this.owningRow != null); 2009return this.owningRow.GetHeight(rowIndex); 2034if (this.owningRow != null) 2036contextMenuStrip = this.owningRow.GetContextMenuStrip(rowIndex); 2074if (this.owningRow != null) 2076state |= (this.owningRow.GetState(-1) & (DataGridViewElementStates.Frozen | DataGridViewElementStates.ReadOnly | DataGridViewElementStates.Selected | DataGridViewElementStates.Visible)); 2077if (this.owningRow.GetResizable(rowIndex) == DataGridViewTriState.True) 2092Debug.Assert(this.owningRow != null); 2095if (this.DataGridView.Rows.SharedRow(rowIndex) != this.owningRow) 2104if (this.owningRow.GetResizable(rowIndex) == DataGridViewTriState.True || 2109if (this.owningColumn.Visible && this.owningRow.GetVisible(rowIndex)) 2112if (this.owningColumn.Displayed && this.owningRow.GetDisplayed(rowIndex)) 2117if (this.owningColumn.Frozen && this.owningRow.GetFrozen(rowIndex)) 2649Debug.Assert(this.owningRow != null); 2650return new Size(this.owningColumn.Thickness, this.owningRow.GetHeight(rowIndex)); 3608dividerThickness = this.owningRow == null ? 0 : this.owningRow.DividerHeight;