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


In This Topic
    RowAxisModel Property
    In This Topic
    Gets or sets the row information for the sheet.
    Syntax
    'Declaration
     
    
    Public Property RowAxisModel As ISheetAxisModel
    'Usage
     
    
    Dim instance As SheetView
    Dim value As ISheetAxisModel
     
    instance.RowAxisModel = value
     
    value = instance.RowAxisModel
    public ISheetAxisModel RowAxisModel {get; set;}

    Property Value

    ISheetAxisModel object containing the row information for the sheet
    Remarks
    This property is available at run time only.
    Example
    This example returns the size of the first row in the RowAxisModel of the SheetView object.
    FarPoint.Web.Spread.SheetView sv=FpSpread1.ActiveSheetView;
    int size=sv.RowAxisModel.GetSize(0);
    ListBox1.Items.Add(size.ToString());
    Dim sv As FarPoint.Web.Spread.SheetView
    Dim size As Integer
    sv=FpSpread1.ActiveSheetView
    size=sv.RowAxisModel.GetSize(0)
    ListBox1.Items.Add(size)
    See Also