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


テキストインデントが設定されているかどうかを決定します。
構文
public override bool IsTextIndentSet()
'Declaration
 
Public Overrides Function IsTextIndentSet() As Boolean
 
'使用法
 
Dim instance As StyleInfo
Dim value As Boolean
 
value = instance.IsTextIndentSet()
次のサンプルコードは、IsTextIndentSetメソッドを使用します。
FarPoint.Win.Spread.StyleInfo si = new FarPoint.Win.Spread.StyleInfo();
si.TextIndent = 3;
fpSpread1.ActiveSheet.DefaultStyle = si;            
listBox1.Items.Add(si.IsTextIndentSet());
Dim si As New FarPoint.Win.Spread.StyleInfo()
si.TextIndent = 3
FpSpread1.ActiveSheet.DefaultStyle = si
ListBox1.Items.Add(si.IsTextIndentSet())
参照

StyleInfo クラス
StyleInfo メンバ

 

 


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