Creates an axis model (DefaultSheetAxisModel object) with the specified number of rows or columns, and no parent model.
Syntax
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.
Visual Basic | Copy Code |
---|
DefaultSheetAxisModelparent=NewDefaultSheetAxisModel(10,SheetAxisOrientation.Horizontal)
DefaultSheetAxisModelchild=NewDefaultSheetAxisModel(10,SheetAxisOrientation.Horizontal,parent)
parent.SetSize(0,50)
child.SetSize(-1,10)
FpSpread1.ActiveSheetView.ColumnAxisModel=child |
C# | Copy Code |
---|
DefaultSheetAxisModelparent=NewDefaultSheetAxisModel(10,SheetAxisOrientation.Horizontal);
DefaultSheetAxisModelchild=NewDefaultSheetAxisModel(10,SheetAxisOrientation.Horizontal,parent);
parent.SetSize(0,50);
child.SetSize(-1,10);
FpSpread1.ActiveSheetView.ColumnAxisModel=child; |
Requirements
Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family
See Also