Spread Windows Forms 12.0 Product Documentation
RowAxis Property
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > SheetView.DocumentModels Class : RowAxis Property
Gets or sets the row axis model.
Syntax
'Declaration
 
Public Property RowAxis As ISheetAxisModel
'Usage
 
Dim instance As SheetView.DocumentModels
Dim value As ISheetAxisModel
 
instance.RowAxis = value
 
value = instance.RowAxis
public ISheetAxisModel RowAxis {get; set;}

Property Value

ISheetAxisModel object containing the axis model
Exceptions
ExceptionDescription
Model is not specified (or specified value is null)
Example
This example specifies the height of the first row.
FarPoint.Win.Spread.SheetView.DocumentModels dm = new FarPoint.Win.Spread.SheetView.DocumentModels();
dm = fpSpread1.ActiveSheet.Models;
dm.RowAxis.SetSize(0, 60);
Dim dm As New FarPoint.Win.Spread.SheetView.DocumentModels()
dm = FpSpread1.ActiveSheet.Models
dm.RowAxis.SetSize(0, 60)
See Also

Reference

SheetView.DocumentModels Class
SheetView.DocumentModels Members