次のサンプルコードは、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())