Spread WPF 18
GrapeCity.Wpf.SpreadSheet.CellType.Editors Namespace / ItemCheckEventArgs Class / ItemCheckEventArgs Constructor
The zero-based display index of the ListItem to change.
The old checked state of the ListItem.
The new checked state of the ListItem.


In This Topic
    ItemCheckEventArgs Constructor
    In This Topic
    Initializes a new instance of the ItemCheckEventArgs class.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal displayIndex As Integer, _
       ByVal oldValue As Nullable(Of Boolean), _
       ByVal newValue As Nullable(Of Boolean) _
    )
    'Usage
     
    Dim displayIndex As Integer
    Dim oldValue As Nullable(Of Boolean)
    Dim newValue As Nullable(Of Boolean)
     
    Dim instance As New ItemCheckEventArgs(displayIndex, oldValue, newValue)
    public ItemCheckEventArgs( 
       int displayIndex,
       Nullable<bool> oldValue,
       Nullable<bool> newValue
    )

    Parameters

    displayIndex
    The zero-based display index of the ListItem to change.
    oldValue
    The old checked state of the ListItem.
    newValue
    The new checked state of the ListItem.
    See Also