'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;}
'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;}
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