Spread Windows Forms 12.0 Product Documentation
orientation Field
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread.Model Namespace > DefaultSheetAxisModel Class : orientation Field
Syntax
'Declaration
 
Protected orientation As SheetAxisOrientation
'Usage
 
Dim instance As DefaultSheetAxisModel
Dim value As SheetAxisOrientation
 
value = instance.orientation
 
instance.orientation = value
protected SheetAxisOrientation orientation

Field Value

SheetAxisOrientation setting that determines the orientation
Example
This example illustrates the use of this member by returning the orientation for the columns in the model.
FarPoint.Win.Spread.Model.DefaultSheetAxisModel dsam = new FarPoint.Win.Spread.Model.DefaultSheetAxisModel(8, FarPoint.Win.Spread.Model.SheetAxisOrientation.Vertical);
FarPoint.Win.Spread.Model.SheetAxisOrientation o;
dsam = (FarPoint.Win.Spread.Model.DefaultSheetAxisModel)fpSpread1.ActiveSheet.Models.ColumnAxis;
o = dsam.Orientation;
listBox1.Items.Add(o.ToString());
Dim dsam As New FarPoint.Win.Spread.Model.DefaultSheetAxisModel(8, FarPoint.Win.Spread.Model.SheetAxisOrientation.Vertical)
Dim o As FarPoint.Win.Spread.Model.SheetAxisOrientation
dsam = fpSpread1.ActiveSheet.Models.ColumnAxis
o = dsam.Orientation
ListBox1.Items.Add(o.ToString())
See Also

Reference

DefaultSheetAxisModel Class
DefaultSheetAxisModel Members