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


In This Topic
    ResultStringEventHandler Delegate
    In This Topic
    Represents the method that will handle the GcImeManager.ResultString attached event.
    Syntax
    'Declaration
     
    Public Delegate Sub ResultStringEventHandler( _
       ByVal sender As Object, _
       ByVal e As ResultStringEventArgs _
    ) 
    'Usage
     
    Dim instance As New ResultStringEventHandler(AddressOf HandlerMethod)
    public delegate void ResultStringEventHandler( 
       object sender,
       ResultStringEventArgs e
    )

    Parameters

    sender
    The object where the event handler is attached.
    e
    The event data.
    Remarks
    This delegate must be used by handlers of the GcImeManager.ResultString attached event.
    See Also