| Visual Basic (Declaration) | |
|---|---|
Public Enum SheetAxisOrientation Inherits Enum | |
| Visual Basic (Usage) | Copy Code |
|---|---|
| |
| C# | |
|---|---|
public enum SheetAxisOrientation : Enum | |
| Member | Description |
|---|---|
| Horizontal | Orients the layout by column (along the horizontal axis) |
| Vertical | Orients the layout by row (along the vertical axis) |
This example changes the orientation of the row headers.
| C# | Copy Code |
|---|---|
FarPoint.Win.Spread.Model.DefaultSheetAxisModel dsam = new FarPoint.Win.Spread.Model.DefaultSheetAxisModel(5, FarPoint.Win.Spread.Model.SheetAxisOrientation.Horizontal); | |
| Visual Basic | Copy Code |
|---|---|
Dim dsam As New FarPoint.Win.Spread.Model.DefaultSheetAxisModel(5, FarPoint.Win.Spread.Model.SheetAxisOrientation.Horizontal) | |
System.Object
System.ValueType
System.Enum
FarPoint.Win.Spread.Model.SheetAxisOrientation