Spread Windows Forms 6.0 Product Documentation
DefaultSheetAxisModel Constructor(Int32,SheetAxisOrientation,ISheetAxisModel)
See Also  Example Support Options
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread.Model Namespace > DefaultSheetAxisModel Class > DefaultSheetAxisModel Constructor : DefaultSheetAxisModel Constructor(Int32,SheetAxisOrientation,ISheetAxisModel)


count
Number of rows or columns in the model
orientation
Model orientation
parent
Parent ISheetAxisModel

Glossary Item Box

Creates an axis model (DefaultSheetAxisModel object) with the specified parent model and number of rows or columns.

Syntax

Visual Basic (Declaration) 
Public Function New( _
   ByVal count As Integer, _
   ByVal orientation As SheetAxisOrientation, _
   ByVal parent As ISheetAxisModel _
)
Visual Basic (Usage)Copy Code
Dim count As Integer
Dim orientation As SheetAxisOrientation
Dim parent As ISheetAxisModel
 
Dim instance As New DefaultSheetAxisModel(count, orientation, parent)
C# 
public DefaultSheetAxisModel( 
   int count,
   SheetAxisOrientation orientation,
   ISheetAxisModel parent
)

Parameters

count
Number of rows or columns in the model
orientation
Model orientation
parent
Parent ISheetAxisModel

Example

This example creates a DefaultSheetAxisModel and assigns it to the RowAxis of the active sheet.
Visual BasicCopy Code
Dim parent As New FarPoint.Win.Spread.Model.DefaultSheetAxisModel(5, FarPoint.Win.Spread.Model.SheetAxisOrientation.Horizontal)
Dim dsam As New FarPoint.Win.Spread.Model.DefaultSheetAxisModel(5, FarPoint.Win.Spread.Model.SheetAxisOrientation.Horizontal,
parent)
FpSpread1.ActiveSheet.Models.RowAxis = dsam
C#Copy Code
FarPoint.Win.Spread.Model.DefaultSheetAxisModel parent = new FarPoint.Win.Spread.Model.DefaultSheetAxisModel(5, FarPoint.Win.Spread.Model.SheetAxisOrientation.Horizontal);
FarPoint.Win.Spread.Model.DefaultSheetAxisModel dsam = new FarPoint.Win.Spread.Model.DefaultSheetAxisModel(5, FarPoint.Win.Spread.Model.SheetAxisOrientation.Horizontal,
parent);
fpSpread1.ActiveSheet.Models.RowAxis = dsam;

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

© 2002-2012 ComponentOne, a division of GrapeCity. All Rights Reserved.