PowerTools SPREAD for Windows Forms 8.0J
VerticalAlignment プロパティ (Row)


この行のセルのデフォルトの垂直方向の配置を取得または設定します。
構文
'Declaration
 
Public Property VerticalAlignment As CellVerticalAlignment
'使用法
 
Dim instance As Row
Dim value As CellVerticalAlignment
 
instance.VerticalAlignment = value
 
value = instance.VerticalAlignment
public CellVerticalAlignment VerticalAlignment {get; set;}

プロパティ値

セル内容の垂直方向の配置を含むCellVerticalAlignmentオブジェクト
解説
このプロパティはリッチテキスト型セルには適用されません。
次のサンプルコードは、行の値の配置を指定します。
FarPoint.Win.Spread.Row r;
r = fpSpread1.ActiveSheet.Rows[0];
r.HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Right;
r.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Bottom;
r.Height = 70;
fpSpread1.ActiveSheet.SetValue(0, 0, "Alignment");
Dim r As FarPoint.Win.Spread.Row
r = FpSpread1.ActiveSheet.Rows(0)
r.HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Right
r.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Bottom
r.Height = 70
FpSpread1.ActiveSheet.SetValue(0, 0, "Alignment")
参照

Row クラス
Row メンバ
CellVerticalAlignment 列挙体

 

 


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