DataGridViewCell.PositionEditingPanel Method

Definition

Sets the location and size of the editing panel hosted by the cell, and returns the normal bounds of the editing control within the editing panel.

public:
 virtual System::Drawing::Rectangle PositionEditingPanel(System::Drawing::Rectangle cellBounds, System::Drawing::Rectangle cellClip, System::Windows::Forms::DataGridViewCellStyle ^ cellStyle, bool singleVerticalBorderAdded, bool singleHorizontalBorderAdded, bool isFirstDisplayedColumn, bool isFirstDisplayedRow);
public virtual System.Drawing.Rectangle PositionEditingPanel (System.Drawing.Rectangle cellBounds, System.Drawing.Rectangle cellClip, System.Windows.Forms.DataGridViewCellStyle cellStyle, bool singleVerticalBorderAdded, bool singleHorizontalBorderAdded, bool isFirstDisplayedColumn, bool isFirstDisplayedRow);
abstract member PositionEditingPanel : System.Drawing.Rectangle * System.Drawing.Rectangle * System.Windows.Forms.DataGridViewCellStyle * bool * bool * bool * bool -> System.Drawing.Rectangle
override this.PositionEditingPanel : System.Drawing.Rectangle * System.Drawing.Rectangle * System.Windows.Forms.DataGridViewCellStyle * bool * bool * bool * bool -> System.Drawing.Rectangle
Public Overridable Function PositionEditingPanel (cellBounds As Rectangle, cellClip As Rectangle, cellStyle As DataGridViewCellStyle, singleVerticalBorderAdded As Boolean, singleHorizontalBorderAdded As Boolean, isFirstDisplayedColumn As Boolean, isFirstDisplayedRow As Boolean) As Rectangle

Parameters

cellBounds
Rectangle

A Rectangle that defines the cell bounds.

cellClip
Rectangle

The area that will be used to paint the editing panel.

cellStyle
DataGridViewCellStyle

A DataGridViewCellStyle that represents the style of the cell being edited.

singleVerticalBorderAdded
Boolean

true to add a vertical border to the cell; otherwise, false.

singleHorizontalBorderAdded
Boolean

true to add a horizontal border to the cell; otherwise, false.

isFirstDisplayedColumn
Boolean

true if the cell is in the first column currently displayed in the control; otherwise, false.

isFirstDisplayedRow
Boolean

true if the cell is in the first row currently displayed in the control; otherwise, false.

Returns

A Rectangle that represents the normal bounds of the editing control within the editing panel.

Exceptions

The cell has not been added to a DataGridView control.

Applies to

See also