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


セルのテキストの回転角度を取得または設定します。
構文
'Declaration
 
Public Property TextRotationAngle As Double
'使用法
 
Dim instance As ButtonCellType
Dim value As Double
 
instance.TextRotationAngle = value
 
value = instance.TextRotationAngle
public double TextRotationAngle {get; set;}
次のサンプルコードは、TextRotationAngleプロパティを設定します。
FarPoint.Win.Spread.CellType.ButtonCellType bttncell = new FarPoint.Win.Spread.CellType.ButtonCellType();
bttncell.ButtonColor = Color.Cyan;
bttncell.DarkColor = Color.DarkCyan;
bttncell.LightColor = Color.AliceBlue;
bttncell.ShadowSize = 3;
bttncell.Text = "Click";
bttncell.TextDown = "...";
bttncell.TextColor = Color.Green;
bttncell.WordWrap = true;
bttncell.UseVisualStyleBackColor = false;
bttncell.TextOrientation = FarPoint.Win.TextOrientation.TextRotateCustom;
bttncell.TextRotationAngle = 20;
fpSpread1.Sheets[0].Cells[3, 2].CellType = bttncell;
Dim bttncell As New FarPoint.Win.Spread.CellType.ButtonCellType()
bttncell.ButtonColor = Color.Cyan
bttncell.DarkColor = Color.DarkCyan
bttncell.LightColor = Color.AliceBlue
bttncell.ShadowSize = 3
bttncell.Text = "Click"
bttncell.TextDown = "..."
bttncell.TextColor = Color.Green
bttncell.WordWrap = True
bttncell.UseVisualStyleBackColor = False
bttncell.TextOrientation = FarPoint.Win.TextOrientation.TextRotateCustom
bttncell.TextRotationAngle = 20
fpSpread1.Sheets(0).Cells(3,2).CellType = bttncell
参照

ButtonCellType クラス
ButtonCellType メンバ

 

 


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