Visual Basic (Declaration) | |
---|---|
Public Property CellType As ICellType |
Visual Basic (Usage) | Copy Code |
---|---|
Dim instance As Cell Dim value As ICellType instance.CellType = value value = instance.CellType |
C# | |
---|---|
public ICellType CellType {get; set;} |
Property Value
ICellType object containing the cell typeThe setting for this property can be overridden if a named style is assigned to the cell using the StyleName property, and that named style sets the cell type.
This setting is different than the GetCellType method for the sheet (SheetView object). The GetCellType method returns the composite (that is, inherited) cell type while this property gets the direct cell type.
Here are graphic or control cell types based on FarPoint.Win.Spread.CellType.BaseCellType:
- FarPoint.Win.Spread.CellType.BarCodeCellType
- FarPoint.Win.Spread.CellType.ButtonCellType
- FarPoint.Win.Spread.CellType.CheckBoxCellType
- FarPoint.Win.Spread.CellType.ColorPickerCellType
- FarPoint.Win.Spread.CellType.ComboBoxCellType
- FarPoint.Win.Spread.CellType.EditBaseCellType
- FarPoint.Win.Spread.CellType.HyperLinkCellType
- FarPoint.Win.Spread.CellType.ImageCellType
- FarPoint.Win.Spread.CellType.ListBoxCellType
- FarPoint.Win.Spread.CellType.MultiColumnComboBoxCellType
- FarPoint.Win.Spread.CellType.MultiOptionCellType
- FarPoint.Win.Spread.CellType.ProgressCellType
- FarPoint.Win.Spread.CellType.RichTextCellType
- FarPoint.Win.Spread.CellType.SliderCellType
Here are editable cell types based on FarPoint.Win.Spread.CellType.EditBaseCellType:
- FarPoint.Win.Spread.CellType.CurrencyCellType
- FarPoint.Win.Spread.CellType.DateTimeCellType
- FarPoint.Win.Spread.CellType.EmptyCellType
- FarPoint.Win.Spread.CellType.GeneralCellType
- FarPoint.Win.Spread.CellType.MaskCellType
- FarPoint.Win.Spread.CellType.NumberCellType
- FarPoint.Win.Spread.CellType.PercentCellType
- FarPoint.Win.Spread.CellType.RegularExpressionCellType
-
FarPoint.Win.Spread.CellType.TextCellType
This example creates a check box cell.
C# | Copy Code |
---|---|
FarPoint.Win.Spread.Cell acell;
FarPoint.Win.Spread.CellType.CheckBoxCellType ck = new FarPoint.Win.Spread.CellType.CheckBoxCellType();
acell = fpSpread1.ActiveSheet.Cells[0, 0];
acell.CellType = ck; |
Visual Basic | Copy Code |
---|---|
Dim acell As FarPoint.Win.Spread.Cell Dim ck As New FarPoint.Win.Spread.CellType.CheckBoxCellType() acell = FpSpread1.ActiveSheet.Cells(0, 0) acell.CellType = ck |
Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8
Reference
Cell ClassCell Members
GetCellType Method