PowerTools SPREAD for Windows Forms 8.0J
TextOrientation プロパティ (ButtonCellType)


セル印刷時のテキストの向きを取得または設定します。
構文
'Declaration
 
Public Property TextOrientation As TextOrientation
'使用法
 
Dim instance As ButtonCellType
Dim value As TextOrientation
 
instance.TextOrientation = value
 
value = instance.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 メンバ

 

 


© 2004-2015, GrapeCity inc. All rights reserved.