GrapeCity SPREAD for Windows Forms 11.0J
IsCellPaddingSet メソッド (StyleInfo)


セルのセルパディングが設定されているかどうかを取得します。
構文
'Declaration
 
Public Overridable Function IsCellPaddingSet() As Boolean
'使用法
 
Dim instance As StyleInfo
Dim value As Boolean
 
value = instance.IsCellPaddingSet()
public virtual bool IsCellPaddingSet()
次のサンプルコードは、IsCellPaddingSetメソッドを使用します。
FarPoint.Win.Spread.StyleInfo si = new FarPoint.Win.Spread.StyleInfo();           
si.CellPadding = new FarPoint.Win.Spread.CellPadding(2);
fpSpread1.ActiveSheet.ColumnHeader.DefaultStyle = si;            
listBox1.Items.Add(si.IsCellPaddingSet());
Dim si As New FarPoint.Win.Spread.StyleInfo()
si.CellPadding = New FarPoint.Win.Spread.CellPadding(2)
FpSpread1.ActiveSheet.ColumnHeader.DefaultStyle = si
ListBox1.Items.Add(si.IsCellPaddingSet())
参照

StyleInfo クラス
StyleInfo メンバ

 

 


© 2004-2018, GrapeCity Inc. All rights reserved.