3 writes to DropDownWidth
System.Windows.Forms (3)
System\Windows\Forms\Controls\DataGridView\DataGridViewComboBoxCell.cs (1)
648dataGridViewCell.DropDownWidth = DropDownWidth;
System\Windows\Forms\Controls\DataGridView\DataGridViewComboBoxColumn.cs (2)
286ComboBoxCellTemplate.DropDownWidth = value; 299dataGridViewCell.DropDownWidth = value;
7 references to DropDownWidth
System.Windows.Forms (7)
System\Windows\Forms\Controls\DataGridView\DataGridViewComboBoxCell.cs (6)
323throw new ArgumentOutOfRangeException(nameof(DropDownWidth), value, string.Format(SR.DataGridViewComboBoxCell_DropDownWidthOutOfRange, 1)); 595if (DropDownWidth == 1) 626if (dropDownWidth != DropDownWidth) 628PInvokeCore.SendMessage(comboBox, PInvoke.CB_SETDROPPEDWIDTH, (WPARAM)DropDownWidth); 648dataGridViewCell.DropDownWidth = DropDownWidth; 1274comboBox.DropDownWidth = DropDownWidth;
System\Windows\Forms\Controls\DataGridView\DataGridViewComboBoxColumn.cs (1)
277return ComboBoxCellTemplate.DropDownWidth;