Spread Windows Forms 13.0 Product Documentation
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread Namespace / FpSpread Class / ClipboardChanged Event
Example


In This Topic
    ClipboardChanged Event
    In This Topic
    Occurs when a Clipboard change occurs that can affect the FarPoint Spread component.
    Syntax
    'Declaration
     
    Public Event ClipboardChanged As EventHandler
    'Usage
     
    Dim instance As FpSpread
    Dim handler As EventHandler
     
    AddHandler instance.ClipboardChanged, handler
    public event EventHandler ClipboardChanged
    Remarks

    This event is raised by the OnClipboardChanged method when a change has been made to the Clipboard.

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

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