Search
WorkbookView.setActiveCell Method
See Also
 






Sets the currently active cell.

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

 Syntax

Java  Copy Code

public void setActiveCell (
    Cell value
)

 Parameters

value

A Cell reference.

 Remarks

The active cell is the one that receives user's input. Its borders are rendered using ActiveBorderPen.

You can prevent users from activating a cell by handling the activatingCell event. The inplaceEditStarting, inplaceEditStarted, inplaceEditEnding, inplaceEditEnded events lets you plug custom code into active cell's edit process.

 See Also