PowerTools SPREAD for Windows Forms 8.0J
AlignHorz プロパティ (PSObject)


要素の内容の水平方向の配置を取得または設定します。
構文
'Declaration
 
Public Overrides Property AlignHorz As HorizontalAlignment
'使用法
 
Dim instance As PSObject
Dim value As HorizontalAlignment
 
instance.AlignHorz = value
 
value = instance.AlignHorz
public override HorizontalAlignment AlignHorz {get; set;}

プロパティ値

配置を決定するHorizontalAlignment設定
解説
このプロパティが使用できるのは実行時のみです。SPREADの矩形でないシェイプの位置合わせ領域はシェイプの境界です。
次のサンプルコードは、テキストの配置方法を指定します。
fpSpread1.Sheets[0].Cells[1, 3].Text = "Test";
FarPoint.Win.Spread.DrawingSpace.RectangleShape a = new FarPoint.Win.Spread.DrawingSpace.RectangleShape();
a.AlignHorz = FarPoint.Win.HorizontalAlignment.Right;
a.AlignVert = FarPoint.Win.VerticalAlignment.Bottom;
a.BackColor = Color.Blue;
a.Text = "Test";
a.CanRenderText = true;
fpSpread1.ActiveSheet.AddShape(a, 1, 1);
FpSpread1.Sheets(0).Cells(1, 3).Text = "Test"
Dim a As New FarPoint.Win.Spread.DrawingSpace.RectangleShape()
a.AlignHorz = FarPoint.Win.HorizontalAlignment.Right
a.AlignVert = FarPoint.Win.VerticalAlignment.Bottom
a.BackColor = Color.Yellow
a.Text = "Test"
a.CanRenderText = True
FpSpread1.ActiveSheet.AddShape(a, 1, 1)
参照

PSObject クラス
PSObject メンバ

 

 


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