在vb6.0中和vb.net中,都有单元格类型
在vb6.0中设置单元格类型:
With fpSpread1
.Col = 1
.Row = 1
.CellType = CellTypeCheckBox
End With
对应的,在vb.net中设置单元格类型:
Dim lsprdCheckBoxCellType As FarPoint.Win.Spread.CellType.CheckBoxCellType
With fpSpread1
.sheets(0).Cells(0,0).CellType=lsprdCheckBoxCellType
End With
通过以上的例子,我可以知道CheckBox的对应转换
我想知道,CellTypePic、CellTypeStaticText、CellTypeDate是怎么对应的?
Dim lsprdCheckBoxCellType As FarPoint.Win.Spread.CellType.????
|
|