public virtual bool IsTabStopSet()
'宣言
Public Overridable Function IsTabStopSet() As Boolean
戻り値の型
Boolean:セルのタブ ストップ設定(TabStop プロパティ)が設定されている場合は
True、それ以外の場合は
False
次のサンプル コードは、タブ ストップが設定されているかどうかを返します。
FarPoint.Win.Spread.StyleInfo si = new FarPoint.Win.Spread.StyleInfo();
si.TabStop = true;
fpSpread1.ActiveSheet.DefaultStyle = si;
bool b;
b = si.IsTabStopSet();
Dim si As New FarPoint.Win.Spread.StyleInfo
si.TabStop = True
fpSpread1.ActiveSheet.DefaultStyle = si
Dim b as Boolean
b = si.IsTabStopSet()