RichTextBox for WPF | ComponentOne
C1.WPF.RichTextBox Namespace / C1RichTextBox Class / TextDrop Event

In This Topic
    TextDrop Event (C1RichTextBox)
    In This Topic
    Fires when dragged text is dropped.
    Syntax
    'Declaration
     
    
    Public Event TextDrop As EventHandler(Of TextDropEventArgs)
    public event EventHandler<TextDropEventArgs> TextDrop
    Event Data

    The event handler receives an argument of type TextDropEventArgs containing data related to this event. The following TextDropEventArgs properties provide information specific to this event.

    PropertyDescription
    Gets or sets whether text drop has already be handled. If set to true, C1RichTextBox does nothing on text drop.  
    Gets the position where text will be dropped.  
    See Also