Spread Windows Forms 9.0 Product Documentation
ShapeDeactivated Event
Example 


Occurs when the user deactivates the active shape object.
Syntax
'Declaration
 
Public Event ShapeDeactivated As EventHandler
'Usage
 
Dim instance As FpSpread
Dim handler As EventHandler
 
AddHandler instance.ShapeDeactivated, handler
public event EventHandler ShapeDeactivated
Example
This example uses the ShapeDeactivated event.
private void Form1_Load(object sender, EventArgs e)
       {
       FarPoint.Win.Spread.DrawingSpace.SpreadCameraShape expected = new FarPoint.Win.Spread.DrawingSpace.SpreadCameraShape("A1:C3");
       expected.Name = "myShape1";
       fpSpread1.Sheets[0].AddShape(expected); 
       }
  
       private void fpSpread1_ShapeDeactivated(object sender, EventArgs e)
       {
        listBox1.Items.Add("ShapeDeactivated");
       }
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load        
        Dim expected As New FarPoint.Win.Spread.DrawingSpace.SpreadCameraShape("A1:C3")
        expected.Name = "myShape1"
        FpSpread1.Sheets(0).AddShape(expected)    
  End Sub

    Private Sub FpSpread1_ShapeDeactivated(ByVal sender As Object, ByVal e As System.EventArgs) Handles FpSpread1.ShapeDeactivated
        ListBox1.Items.Add("ShapeDeactivated")
    End Sub
Requirements

Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows Server 2012 R2, Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8, Windows 8.1, Windows 10

See Also

Reference

FpSpread Class
FpSpread Members

 

 


Copyright © GrapeCity, inc. All rights reserved.