セルの編集に使用されるコントロールを初期化します。

Namespace: YiaoWang.Windows.Forms
Assembly: YiaoWang.Windows.Forms (YiaoWang.Windows.Forms.dll 内) バージョン: 2.11.5.7 (2.11.5.7)

Syntax

C#
public override void InitializeEditingControl(
	int rowIndex,
	Object initialFormattedValue,
	DataGridViewCellStyle dataGridViewCellStyle
)
Visual Basic
Public Overrides Sub InitializeEditingControl ( _
	rowIndex As Integer, _
	initialFormattedValue As Object, _
	dataGridViewCellStyle As DataGridViewCellStyle _
)

Parameters

rowIndex
Type: System..::..Int32
セルの位置の 0 から始まる行インデックス番号。
initialFormattedValue
Type: System..::..Object
編集の開始時にセルに表示される値を表す Object。
dataGridViewCellStyle
Type: System.Windows.Forms..::..DataGridViewCellStyle
セルのスタイルを表す DataGridViewCellStyle。

Remarks

Set the value of the editing control to the current cell value.

See Also