TextSelectingEventHandler Delegate

Represents the method that will handle the TextSelecting event.

public delegate void TextSelectingEventHandler(Object sender, TextSelectingEventArgs e)
Public Delegate Sub TextSelectingEventHandler(sender As Object, e As TextSelectingEventArgs)

Parameters

sender
Object

The source of the event.

e
TextSelectingEventArgs

A TextSelectingEventArgs that contains the event data.

Inheritance: ObjectDelegateMulticastDelegateTextSelectingEventHandler

Licensing Info

This delegate is a DynamicPDF Viewer feature. One of the following is required for non-evaluation usage:

Examples

For example refer to TextSelecting event.

Remarks

When you create a TextSelectingEventHandler delegate, you identify the method that will handle the event. To associate the event with your event handler, add an instance of the delegate to the event. The event handler is called whenever the event occurs, unless you remove the delegate.

See Also

ceTe.DynamicPDF.Viewer

In this topic