FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > FpSpread Class : ShapeDeactivated Event |
'Declaration Public Event ShapeDeactivated As EventHandler
'Usage Dim instance As FpSpread Dim handler As EventHandler AddHandler instance.ShapeDeactivated, handler
public event EventHandler ShapeDeactivated
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
Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8