Spread ASP.NET 17
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread Namespace / Row Class / CellType Property
Example


In This Topic
    CellType Property (Row)
    In This Topic
    Gets or sets the default cell type for cells in this row.
    Syntax
    '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
    Example
    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.
    See Also