FarPoint.Win
TextPastedEventHandler Delegate
See Also 
FarPoint.Win Assembly > FarPoint.Win.SuperEdit Namespace : TextPastedEventHandler Delegate


sender
Source of event
e
Event data
Represents the method that handles the TextPasted event.

Syntax

Visual Basic (Declaration) 
Public Delegate Sub TextPastedEventHandler( _
   ByVal sender As Object, _
   ByVal e As CancelEventArgs _
) 
Visual Basic (Usage)Copy Code
Dim instance As New TextPastedEventHandler(AddressOf HandlerMethod)
C# 
public delegate void TextPastedEventHandler( 
   object sender,
   CancelEventArgs e
)

Parameters

sender
Source of event
e
Event data

See Also