Gets or sets the default cell type for cells in this row.
'Declaration
Public Property CellType As ICellType
'Usage
Dim instance As Row
Dim value As ICellType
instance.CellType = value
value = instance.CellType
public ICellType CellType {get; set;}
Property Value
ICellType object that contains the cell type for cells in this row
This example creates a Row object and a ButtonCellType object for the active sheet. The ButtonCellType object is assigned to the CellType property of the Row object, such that the cells of the first row of the active sheet are all button cells.