PowerTools SPREAD for Windows Forms 8.0J
HorizontalAlignment フィールド


シートスタイルの水平配置を表します。
構文
'Declaration
 
Public Shared ReadOnly HorizontalAlignment As SheetStyleProperty
'使用法
 
Dim value As SheetStyleProperty
 
value = SheetStyleProperty.HorizontalAlignment
public static readonly SheetStyleProperty HorizontalAlignment
次のサンプルコードは、水平方向の配置が設定されているかどうかを問い合わせます。
FarPoint.Win.Spread.StyleInfo info = new FarPoint.Win.Spread.StyleInfo();
bool b;
info.HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Right;
fpSpread1.ActiveSheet.DefaultStyle = info;
b = info.IsPropertySet(FarPoint.Win.Spread.SheetStyleProperty.HorizontalAlignment);
listBox1.Items.Add(b.ToString());
Dim info As New FarPoint.Win.Spread.StyleInfo()
info.HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Right
Dim b As Boolean
FpSpread1.ActiveSheet.DefaultStyle = info
b = info.IsPropertySet(FarPoint.Win.Spread.SheetStyleProperty.HorizontalAlignment)
ListBox1.Items.Add(b.ToString())
参照

SheetStyleProperty クラス
SheetStyleProperty メンバ

 

 


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