Spread for ASP.NET 10 Product Documentation
CanFocus Property (Cell)
Example 


Gets or sets whether the user can set focus to the cell using the keyboard or mouse.
Syntax
'Declaration
 
Public Property CanFocus As Boolean
'Usage
 
Dim instance As Cell
Dim value As Boolean
 
instance.CanFocus = value
 
value = instance.CanFocus
public bool CanFocus {get; set;}
Remarks
The combo box, button, text, hyperlink, radio button, and check box cells can still be edited if you set the CanFocus property to False. If you do not want the user to edit these cells, you will need to make the cell read-only.
Example
This example sets the CanFocus property.
FpSpread1.Sheets[0].Cells[0, 1].CanFocus = false;
FpSpread1.Sheets[0].Columns[2].CanFocus = true;
FpSpread1.Sheets[0].Rows[2].CanFocus = true;
FpSpread1.Sheets(0).Cells(0, 1).CanFocus = False
FpSpread1.Sheets(0).Columns(2).CanFocus = True
FpSpread1.Sheets(0).Rows(2).CanFocus = True
Requirements

Target Platforms: Windows 7, Windows 8, Windows 10, Windows Vista, Windows Server 2003, Windows Server 2008, Windows Server 2012, Windows XP Professional

See Also

Reference

Cell Class
Cell Members

 

 


Copyright © GrapeCity, inc. All rights reserved.