MESCIUS SPREAD for Windows Forms 15.0J
IsNoteIndicatorSizeSet メソッド (StyleInfo)
使用例 

セルノートインジケーターのサイズが設定されているかどうかを判定します。
構文
'宣言
 
Public Overridable Function IsNoteIndicatorSizeSet() As Boolean
public virtual bool IsNoteIndicatorSizeSet()
使用例
次のサンプルコードは、IsNoteIndicatorSizeSetメソッドを使用します。
fpSpread1.ActiveSheet.SetNote(1, 1, "Test");
FarPoint.Win.Spread.StyleInfo si = new FarPoint.Win.Spread.StyleInfo();
si.NoteIndicatorSize = new Size(10, 10);
si.NoteIndicatorPosition = FarPoint.Win.Spread.NoteIndicatorPosition.BottomRight;
fpSpread1.ActiveSheet.DefaultStyle = si;            
listBox1.Items.Add(si.IsNoteIndicatorPositionSet());
listBox1.Items.Add(si.IsNoteIndicatorSizeSet());
fpSpread1.ActiveSheet.SetNote(1, 1, "Test")
Dim si As New FarPoint.Win.Spread.StyleInfo()
si.NoteIndicatorSize = New Size(10, 10)
si.NoteIndicatorPosition = FarPoint.Win.Spread.NoteIndicatorPosition.BottomRight
fpSpread1.ActiveSheet.DefaultStyle = si
ListBox1.Items.Add(si.IsNoteIndicatorPositionSet())
ListBox1.Items.Add(si.IsNoteIndicatorSizeSet())
参照

StyleInfo クラス
StyleInfo メンバ

 

 


© MESCIUS inc. All rights reserved.