Namespace: Spire.Spreadsheet.Forms
Assembly: Spire.Spreadsheet (in Spire.Spreadsheet.dll) Version: 5.6.1.0 (5.6.1.7020)

Syntax

            
 C#  Visual Basic  Visual C++  F# 
public delegate void CellKeyEventHandler(
	Object sender,
	CellAdressInfo info,
	Keys key,
	out bool handled
)
Public Delegate Sub CellKeyEventHandler ( 
	sender As Object,
	info As CellAdressInfo,
	key As Keys,
	<OutAttribute> ByRef handled As Boolean
)
public delegate void CellKeyEventHandler(
	Object^ sender, 
	CellAdressInfo^ info, 
	Keys key, 
	[OutAttribute] bool% handled
)
type CellKeyEventHandler = 
    delegate of 
        sender : Object * 
        info : CellAdressInfo * 
        key : Keys * 
        handled : bool byref -> unit

Parameters

sender
Object
info
CellAdressInfo
key
Keys
handled
Boolean%

See Also