Visual Basic (Declaration) | |
---|---|
Public Property CellType As ICellType |
Visual Basic (Usage) | Copy Code |
---|---|
Dim instance As Column 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
C# | Copy Code |
---|---|
FarPoint.Win.Spread.Column col;
FarPoint.Win.Spread.CellType.ButtonCellType cell = new FarPoint.Win.Spread.CellType.ButtonCellType();
col = fpSpread1.ActiveSheet.Columns[0];
col.CellType = cell; |
Visual Basic | Copy Code |
---|---|
Dim col As FarPoint.Win.Spread.Column Dim cell As New FarPoint.Win.Spread.CellType.ButtonCellType() col = FpSpread1.ActiveSheet.Columns(0) col.CellType = cell |
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2