FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > Column Class : CellType Property |
'Declaration Public Property CellType As ICellType
'Usage Dim instance As Column Dim value As ICellType instance.CellType = value value = instance.CellType
public ICellType CellType {get; set;}
The 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:
Here are editable cell types based on FarPoint.Win.Spread.CellType.EditBaseCellType:
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;
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 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8