Spread ASP.NET 15
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread.Model Namespace / ISheetSpanModel Interface / Clear Method
Example


In This Topic
    Clear Method (ISheetSpanModel)
    In This Topic
    Removes all cell spans from the collection.
    Syntax
    'Declaration
     
    Sub Clear() 
    'Usage
     
    Dim instance As ISheetSpanModel
     
    instance.Clear()
    void Clear()
    Example
    FarPoint.Web.Spread.Model.ISheetSpanModel iss;
    iss = (FarPoint.Web.Spread.Model.ISheetSpanModel)FpSpread1.ActiveSheetView.SpanModel;
    iss.Clear;
    
    Dim iss As FarPoint.Web.Spread.Model.ISheetSpanModel
    iss = FpSpread1.ActiveSheetView.SpanModel
    iss.Clear
    See Also