DataGridBoolColumn.Edit 方法

定義

準備儲存格以編輯某個值。

protected public:
 override void Edit(System::Windows::Forms::CurrencyManager ^ source, int rowNum, System::Drawing::Rectangle bounds, bool readOnly, System::String ^ instantText, bool cellIsVisible);
protected public:
 override void Edit(System::Windows::Forms::CurrencyManager ^ source, int rowNum, System::Drawing::Rectangle bounds, bool readOnly, System::String ^ displayText, bool cellIsVisible);
protected internal override void Edit(System.Windows.Forms.CurrencyManager source, int rowNum, System.Drawing.Rectangle bounds, bool readOnly, string instantText, bool cellIsVisible);
protected internal override void Edit(System.Windows.Forms.CurrencyManager source, int rowNum, System.Drawing.Rectangle bounds, bool readOnly, string displayText, bool cellIsVisible);
override this.Edit : System.Windows.Forms.CurrencyManager * int * System.Drawing.Rectangle * bool * string * bool -> unit
override this.Edit : System.Windows.Forms.CurrencyManager * int * System.Drawing.Rectangle * bool * string * bool -> unit
Protected Friend Overrides Sub Edit (source As CurrencyManager, rowNum As Integer, bounds As Rectangle, readOnly As Boolean, instantText As String, cellIsVisible As Boolean)
Protected Friend Overrides Sub Edit (source As CurrencyManager, rowNum As Integer, bounds As Rectangle, readOnly As Boolean, displayText As String, cellIsVisible As Boolean)

參數

source
CurrencyManager

編輯細胞的部分 DataView

rowNum
Int32

編輯後儲存格的列號。

bounds
Rectangle

Rectangle控制中心將設置於何處。

readOnly
Boolean

true若值為唯讀;否則,。 false

instantTextdisplayText
String

要顯示在牢房裡的文字。

cellIsVisible
Boolean

true展示細胞;否則,。 false

備註

與此方法的典型實作(如本 DataGridColumnStyle 堂所述)不同,此 Edit 方法並未包含編輯儲存格值的控制項。 取而代之的是,當方法被呼叫時 Paint 會勾選一個方框。

適用於