FlexPivot for WinForms
KeyUpEdit イベント (C1FlexGridBase)

C1.Win.C1FlexGrid.4.5.2 アセンブリ > C1.Win.C1FlexGrid 名前空間 > C1FlexGridBase クラス : KeyUpEdit イベント
Fires in edit mode, when the user releases a key.
シンタックス
'宣言
 
Public Event KeyUpEdit As KeyEditEventHandler
public event KeyEditEventHandler KeyUpEdit
イベント データ

イベント ハンドラが、このイベントに関連するデータを含む、KeyEditEventArgs 型の引数を受け取りました。次の KeyEditEventArgs プロパティには、このイベントの固有の情報が記載されます。

プロパティ解説
Gets a value indicating whether the ALT key was pressed.  
Gets the column index of the cell being edited when the key was pressed.  
Gets a value indicating whether the CTRL key was pressed.  
Gets or sets a value indicating whether the event was handled and should be ignored by the control.  
Gets the key code for the event, which will be one of the System.Windows.Forms.Keys values.  
Gets the key code for the key that was pressed, combined with modifier flags that indicate which combination of CTRL, SHIFT, and ALT keys were pressed at the same time.  
Gets the integer representation of the KeyData property.  
Gets the modifier flags, as defined in Keys. This indicates which combination of modifier keys (CTRL, SHIFT, and ALT) were pressed.  
Gets the row index of the cell being edited when the key was pressed.  
Gets a value indicating whether the SHIFT key was pressed.  
解説

The KeyUpEdit event corresponds to the System.Windows.Forms.Control.KeyUp event, except it fires when the grid is in edit mode (in this case, the control that receives the key is the editor, not the grid itself).

The editor has three modes: text, drop-down combo, or drop-down list. The mode used is determined by the ComboList properties in the grid and column objects.

While editing with the text editor or with a drop-down combo, you may set or retrieve the contents of the editor by retrieving the editor control with the Editor property and casting it to the proper type.

参照