Spread Windows Forms 12.0 Product Documentation
ClipboardChanging Event
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > FpSpread Class : ClipboardChanging Event
Occurs when the Clipboard is changing through a Spread action.
Syntax
'Declaration
 
Public Event ClipboardChanging As EventHandler
'Usage
 
Dim instance As FpSpread
Dim handler As EventHandler
 
AddHandler instance.ClipboardChanging, handler
public event EventHandler ClipboardChanging
Remarks

This event is raised by the OnClipboardChanging method when the user makes a change to the Clipboard.

For more details on the individual event arguments, refer to EventArgs members.

Example
This example uses the ClipboardChanging event.
private void fpSpread1_ClipboardChanging(object sender, EventArgs e)
        {
            listBox1.Items.Add("Changing");
        }
Private Sub fpSpread1_ClipboardChanging(sender As Object, e As EventArgs) Handles fpSpread1.ClipboardChanging
        ListBox1.Items.Add("Changing")
    End Sub
See Also

Reference

FpSpread Class
FpSpread Members