Spread ASP.NET 17
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread Namespace / SheetView Class / SpanModel Property
Example


In This Topic
    SpanModel Property
    In This Topic
    Gets or sets the spanned cells for the sheet.
    Syntax
    'Declaration
     
    
    Public Property SpanModel As ISheetSpanModel
    'Usage
     
    
    Dim instance As SheetView
    Dim value As ISheetSpanModel
     
    instance.SpanModel = value
     
    value = instance.SpanModel
    public ISheetSpanModel SpanModel {get; set;}

    Property Value

    ISheetSpanModel object containing the spanned cells for the sheet
    Remarks
    This property is available at run time only.
    Example
    This example uses the SheetView object to create a cell span.
    FarPoint.Web.Spread.SheetView sv=FpSpread1.ActiveSheetView;
    sv.SpanModel.Add(0,0,3,3);
    Dim sv As FarPoint.Web.Spread.SheetView
    sv=FpSpread1.ActiveSheetView
    sv.SpanModel.Add(0,0,3,3)
    See Also