Spread Windows Forms 12.0 Product Documentation
ShapeDeactivated Event
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > FpSpread Class : ShapeDeactivated Event
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
See Also

Reference

FpSpread Class
FpSpread Members