PowerTools SPREAD for Windows Forms 8.0J
NoteIndicatorSize プロパティ (StyleInfo)


セルノートインジケーターのサイズを取得または設定します。
構文
'Declaration
 
Public Overridable Property NoteIndicatorSize As Size
'使用法
 
Dim instance As StyleInfo
Dim value As Size
 
instance.NoteIndicatorSize = value
 
value = instance.NoteIndicatorSize
public virtual Size NoteIndicatorSize {get; set;}
次のサンプルコードは、ノートインジケーターのサイズを設定します。
FarPoint.Win.Spread.StyleInfo si = new FarPoint.Win.Spread.StyleInfo(); 
si.NoteIndicatorSize = new Size(10, 10); 
fpSpread1.ActiveSheet.SetNote(0, 0, "Test"); 
fpSpread1.ActiveSheet.DefaultStyle = si; 

bool b; 
b = si.IsPropertySet(FarPoint.Win.Spread.SheetStyleProperty.NoteIndicatorSize); 
MessageBox.Show(b.ToString()); 
Dim si As New FarPoint.Win.Spread.StyleInfo
si.NoteIndicatorSize = New Size(10, 10)
FpSpread1.ActiveSheet.SetNote(0, 0, "Test")
FpSpread1.ActiveSheet.DefaultStyle = si

Dim b As Boolean
b = si.IsPropertySet(FarPoint.Win.Spread.SheetStyleProperty.NoteIndicatorSize)
MessageBox.Show(b.ToString())
参照

StyleInfo クラス
StyleInfo メンバ

 

 


© 2004-2015, GrapeCity inc. All rights reserved.