Share via


DataGridViewCheckBoxHeaderCell.CheckBoxHeaderCellClickHandler Delegate

Represents the method that will handle the click in a header cell.

Namespace:  Microsoft.SqlServer.Management.Controls
Assembly:  Microsoft.SqlServer.Management.Controls (in Microsoft.SqlServer.Management.Controls.dll)

Syntax

'Declaration
Public Delegate Sub CheckBoxHeaderCellClickHandler ( _
    isChecked As Boolean _
)
'Usage
Dim instance As New CheckBoxHeaderCellClickHandler(AddressOf HandlerMethod)
public delegate void CheckBoxHeaderCellClickHandler(
    bool isChecked
)
public delegate void CheckBoxHeaderCellClickHandler(
    bool isChecked
)
type CheckBoxHeaderCellClickHandler = 
    delegate of 
        isChecked:bool -> unit
JScript supports the use of delegates, but not the declaration of new ones.

Parameters