MESCIUS SPREAD for Windows Forms 15.0J
TextOrientation プロパティ (ButtonCellType)
使用例 

セル印刷時のテキストの向きを取得または設定します。
構文
'宣言
 
Public Property TextOrientation As TextOrientation
public TextOrientation TextOrientation {get; set;}

プロパティ値

テキストの向きを決定するTextOrientation設定
解説

Orientationの設定は次のとおりです。

Orientation 表示例
TextHorizontal

TextHorizontalFlipped

TextVertical

TextVerticalFlipped

TextTopDown

TextTopDownRTL

使用例
次のサンプルコードは、TextOrientationプロパティを設定します。
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
参照

ButtonCellType クラス
ButtonCellType メンバ

 

 


© MESCIUS inc. All rights reserved.