Spread for ASP.NET 10 Product Documentation
AccessKey Property (CheckBoxCellType)
Example 


Gets or sets the access key that allows you to quickly navigate to the cell.
Syntax
'Declaration
 
Public Property AccessKey As String
'Usage
 
Dim instance As CheckBoxCellType
Dim value As String
 
instance.AccessKey = value
 
value = instance.AccessKey
public string AccessKey {get; set;}
Example
This example sets the access key (hot-key).
FarPoint.Web.Spread.CheckBoxCellType chbxc = new FarPoint.Web.Spread.CheckBoxCellType();
chbxc.AccessKey = "j";
FpSpread1.Sheets[0].Cells[0, 0].CellType = chbxc;
Dim chbxc As New FarPoint.Web.Spread.CheckBoxCellType
chbxc.AccessKey = "j"
FpSpread1.Sheets(0).Cells(0, 0).CellType = chbxc
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

CheckBoxCellType Class
CheckBoxCellType Members

 

 


Copyright © GrapeCity, inc. All rights reserved.