Spread WPF 18
GrapeCity.Wpf.SpreadSheet.CellType.Editors Namespace / TextChangingEventHandler Delegate
The object where the event handler is attached.
The event data.


In This Topic
    TextChangingEventHandler Delegate
    In This Topic
    Represents the method that will handle the GrapeCity.Windows.InputMan.Primitives.EditBase.TextChanging event of a editor class.
    Syntax
    'Declaration
     
    <SerializableAttribute()>
    Public Delegate Sub TextChangingEventHandler( _
       ByVal sender As Object, _
       ByVal e As TextChangingEventArgs _
    ) 
    'Usage
     
    Dim instance As New TextChangingEventHandler(AddressOf HandlerMethod)
    [Serializable()]
    public delegate void TextChangingEventHandler( 
       object sender,
       TextChangingEventArgs e
    )

    Parameters

    sender
    The object where the event handler is attached.
    e
    The event data.
    See Also