FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > FpSpread Class : EditModeOn Event |
'Declaration Public Event EditModeOn As EventHandler
'Usage Dim instance As FpSpread Dim handler As EventHandler AddHandler instance.EditModeOn, handler
public event EventHandler EditModeOn
This event is raised by the OnEditModeOn method when edit mode is started.
For a discussion of edit mode and related properties, refer to Understanding Edit Mode.
This event is fired after the cell editor is initialized for editing the cell, and thus is useful for attaching event handlers to the cell editor control (FpSpread.EditingControl).
Label1.Text = "Put a cell into edit mode to fire the EditModeOn event"; private void fpSpread1_EditModeOn(object sender, System.EventArgs e) { ListBox1.Items.Add("EditModeOn event fired!"); }
Label1.Text = "Put a cell into edit mode to fire the EditModeOn event" Private Sub FpSpread1_EditModeOn(ByVal sender As Object, ByVal e As System.EventArgs) Handles FpSpread1.EditModeOff ListBox1.Items.Add("EditModeOn event fired!") 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