Spread Windows Forms 12.0 Product Documentation
TextOrientation Property (ButtonCellType)
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread.CellType Namespace > ButtonCellType Class : TextOrientation Property
Gets or sets how text orients itself when painting the cell.
Syntax
'Declaration
 
Public Property TextOrientation As TextOrientation
'Usage
 
Dim instance As ButtonCellType
Dim value As TextOrientation
 
instance.TextOrientation = value
 
value = instance.TextOrientation
public TextOrientation TextOrientation {get; set;}

Property Value

TextOrientation setting that determines how text is oriented
Remarks

The orientation settings are shown here:

Orientation Example Appearance
TextHorizontal

TextHorizontalFlipped

TextVertical

TextVerticalFlipped

TextTopDown

TextTopDownRTL

Example
This example sets the TextOrientation property.
FarPoint.Win.Spread.CellType.ButtonCellType butncell = new FarPoint.Win.Spread.CellType.ButtonCellType();
butncell.Text = "Click";
butncell.TextOrientation = FarPoint.Win.TextOrientation.TextVertical;        
fpSpread1.Sheets[0].Cells[2, 2].CellType = butncell;
Dim butncell As New FarPoint.Win.Spread.CellType.ButtonCellType()
butncell.Text = "Click"
butncell.TextOrientation = FarPoint.Win.TextOrientation.TextVertical
fpSpread1.Sheets(0).Cells(2, 2).CellType = butncell
See Also

Reference

ButtonCellType Class
ButtonCellType Members