4 writes to AllowUserToAddRows
PresentationUI (1)
MS\Internal\Documents\RMPublishingDialog.Designer.cs (1)
230
this.rightsTable.
AllowUserToAddRows
= false;
System.Windows.Forms.Design (3)
System\Windows\Forms\Design\DataGridViewCellStyleBuilder.cs (2)
177
_sampleDataGridView.
AllowUserToAddRows
= false;
190
_sampleDataGridViewSelected.
AllowUserToAddRows
= false;
System\Windows\Forms\Design\DataGridViewDesigner.cs (1)
875
dataGridView.
AllowUserToAddRows
= value;
6 references to AllowUserToAddRows
System.Windows.Forms (4)
System\Windows\Forms\Controls\DataGridView\DataGridView.cs (3)
653
if (
AllowUserToAddRows
!= value)
667
?
AllowUserToAddRows
668
:
AllowUserToAddRows
&& DataConnection!.AllowAdd;
System\Windows\Forms\Controls\DataGridView\DataGridViewRow.DataGridViewRowAccessibleObject.cs (1)
217
if (_owningDataGridViewRow.DataGridView is not null && _owningDataGridViewRow.DataGridView.
AllowUserToAddRows
&& _owningDataGridViewRow.Index == _owningDataGridViewRow.DataGridView.NewRowIndex)
System.Windows.Forms.Design (2)
System\Windows\Forms\Design\DataGridViewDesigner.cs (1)
847
get => _owner.Control.
AllowUserToAddRows
;
System\Windows\Forms\Design\DataGridViewRowCollectionCodeDomSerializer.cs (1)
36
Debug.Assert(dataGridView.
AllowUserToAddRows
, "we only have the add new row when the data grid view allows users to add rows");