Search
WorksheetViewAdapter.activatingCell Method
See Also
 






Raised when cell is activating.

Namespace: com.mindfusion.spreadsheet
Package: com.mindfusion.spreadsheet

 Syntax

Java  Copy Code

public void activatingCell (
    ActivationEvent e
)

 Parameters

e

An ActivationEvent instance containing information about the event.

 Remarks

This event lets you override cell navigation, for example skipping some cells while tabbing, or activating a specific cell when exiting its paired cell. The cell being exited can be accessed through the event's CurrentCell property, and the navigation target can be overridden by changing NextCell.

 See Also