DataGridViewTextBoxCell.PositionEditingControl メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
DataGridView コントロールのセルによってホストされる編集コントロールの位置とサイズを設定します。
public:
override void PositionEditingControl(bool setLocation, bool setSize, System::Drawing::Rectangle cellBounds, System::Drawing::Rectangle cellClip, System::Windows::Forms::DataGridViewCellStyle ^ cellStyle, bool singleVerticalBorderAdded, bool singleHorizontalBorderAdded, bool isFirstDisplayedColumn, bool isFirstDisplayedRow);
public override void PositionEditingControl (bool setLocation, bool setSize, System.Drawing.Rectangle cellBounds, System.Drawing.Rectangle cellClip, System.Windows.Forms.DataGridViewCellStyle cellStyle, bool singleVerticalBorderAdded, bool singleHorizontalBorderAdded, bool isFirstDisplayedColumn, bool isFirstDisplayedRow);
override this.PositionEditingControl : bool * bool * System.Drawing.Rectangle * System.Drawing.Rectangle * System.Windows.Forms.DataGridViewCellStyle * bool * bool * bool * bool -> unit
Public Overrides Sub PositionEditingControl (setLocation As Boolean, setSize As Boolean, cellBounds As Rectangle, cellClip As Rectangle, cellStyle As DataGridViewCellStyle, singleVerticalBorderAdded As Boolean, singleHorizontalBorderAdded As Boolean, isFirstDisplayedColumn As Boolean, isFirstDisplayedRow As Boolean)
パラメーター
- setLocation
- Boolean
他の引数による指定に従ってコントロールを配置する場合は true
。コントロールをそれ自体を配置できるようにする場合は false
。
- setSize
- Boolean
サイズを指定する場合は true
。コントロールがそれ自体のサイズを指定できるようにする場合は false
。
- cellClip
- Rectangle
編集コントロールを描画するために使用される領域。
- cellStyle
- DataGridViewCellStyle
編集されているセルのスタイルを表す DataGridViewCellStyle。
- singleVerticalBorderAdded
- Boolean
垂直方向の境界線をセルに追加する場合は true
。それ以外の場合は false
。
- singleHorizontalBorderAdded
- Boolean
水平方向の境界線をセルに追加する場合は true
。それ以外の場合は false
。
- isFirstDisplayedColumn
- Boolean
ホストしているセルが最初に表示される列にある場合は true
。それ以外の場合は false
。
- isFirstDisplayedRow
- Boolean
ホストしているセルが最初に表示される行にある場合は true
。それ以外の場合は false
。