Visual Basic (Declaration) | |
---|---|
Public Property CellType As ICellType |
Visual Basic (Usage) | Copy Code |
---|---|
Dim instance As AlternatingRow Dim value As ICellType instance.CellType = value value = instance.CellType |
C# | |
---|---|
public ICellType CellType {get; set;} |
Property Value
ICellType object containing the cell typeTo create alternating rows, first set the AlternatingRows.Count property to specify the number of alternating row patterns, then set the properties for each pattern.
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:
- 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.AlternatingRow altrow;
altrow = fpSpread1.ActiveSheet.AlternatingRows[0];
altrow.CellType = new FarPoint.Win.Spread.CellType.ButtonCellType(); |
Visual Basic | Copy Code |
---|---|
Dim altrow As FarPoint.Win.Spread.AlternatingRow altrow = FpSpread1.ActiveSheet.AlternatingRows(0) altrow.CellType = New FarPoint.Win.Spread.CellType.ButtonCellType() |
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
Reference
AlternatingRow ClassAlternatingRow Members