Spread ASP.NET 17
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread.Model Namespace / DefaultSheetAxisModel Class / DefaultSheetAxisModel Constructor / DefaultSheetAxisModel Constructor(Int32,SheetAxisOrientation)
Number of rows or columns in the model
Orientation of the model
Example


In This Topic
    DefaultSheetAxisModel Constructor(Int32,SheetAxisOrientation)
    In This Topic
    Creates an axis model (DefaultSheetAxisModel object) with the specified number of rows or columns, and no parent model.
    Syntax
    'Declaration
     
    
    Public Function New( _
       ByVal count As Integer, _
       ByVal orientation As SheetAxisOrientation _
    )
    'Usage
     
    
    Dim count As Integer
    Dim orientation As SheetAxisOrientation
     
    Dim instance As New DefaultSheetAxisModel(count, orientation)
    public DefaultSheetAxisModel( 
       int count,
       SheetAxisOrientation orientation
    )

    Parameters

    count
    Number of rows or columns in the model
    orientation
    Orientation of the model
    Example
    The following example creates two DefaultSheetAxisModel objects, a parent and a child, then sets the size of the first column to 50 in the parent model and the default size to 10 in the child model, and sets the child model into the active SheetView of the Spread component. The first column in the sheet has a width of 50 inherited from the parent axis model, and all other columns have the default width of 10 inherited from the default setting for the child model.
    DefaultSheetAxisModel parent = New DefaultSheetAxisModel(10,SheetAxisOrientation.Horizontal)
    DefaultSheetAxisModel child = New DefaultSheetAxisModel(10,SheetAxisOrientation.Horizontal,parent)
    parent.SetSize(0,50)
    child.SetSize(-1,10)
    FpSpread1.ActiveSheetView.ColumnAxisModel=child
    DefaultSheetAxisModel parent = new DefaultSheetAxisModel(10,SheetAxisOrientation.Horizontal);
    DefaultSheetAxisModel child = new DefaultSheetAxisModel(10,SheetAxisOrientation.Horizontal,parent);
    parent.SetSize(0,50);
    child.SetSize(-1,10);
    FpSpread1.ActiveSheetView.ColumnAxisModel=child;
    See Also