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


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

プロパティ値

テキストの配置を決定するVerticalAlignment設定
解説
このプロパティが使用できるのは実行時のみです。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.