PowerTools SPREAD for Windows Forms 10.0J
IsTextIndentSet メソッド


テキストインデントが設定されているかどうかを決定します。
構文
public virtual bool IsTextIndentSet()
'Declaration
 
Public Overridable 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-2017, GrapeCity inc. All rights reserved.