GrapeCity SPREAD for Windows Forms 11.0J
ResetNoteStyle メソッド (StyleInfo)


NoteStyleプロパティをデフォルト値にリセットします。
構文
'Declaration
 
Public Overridable Sub ResetNoteStyle() 
'使用法
 
Dim instance As StyleInfo
 
instance.ResetNoteStyle()
public virtual void ResetNoteStyle()
解説
デフォルトでは、NoteStyleプロパティは設定されていません。このプロパティをリセットすると、未設定状態に戻ります。
private void Form1Load(object sender, System.EventArgs e)
{
      fpSpread1.ActiveSheet.SetNote(0, 0, "Head of Development"); 
      fpSpread1.ActiveSheet.DefaultStyle.NoteStyle = FarPoint.Win.Spread.NoteStyle.StickyNote;
}

private void button1Click(object sender, System.EventArgs e)
{
      fpSpread1.ActiveSheet.DefaultStyle.ResetNoteStyle();
      fpSpread1.ResumeLayout();
      fpSpread1.TextTipPolicy = FarPoint.Win.Spread.TextTipPolicy.Floating;
}  
Private Sub Form1Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load 
      FpSpread1.ActiveSheet.SetNote(0, 0, "Head of Development") 
      FpSpread1.ActiveSheet.DefaultStyle.NoteStyle = FarPoint.Win.Spread.NoteStyle.StickyNote
End Sub

Private Sub Button1Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
      FpSpread1.ActiveSheet.DefaultStyle.ResetNoteStyle()
      FpSpread1.ResumeLayout()
      FpSpread1.TextTipPolicy = FarPoint.Win.Spread.TextTipPolicy.Floating
End Sub
参照

StyleInfo クラス
StyleInfo メンバ

 

 


© 2004-2018, GrapeCity Inc. All rights reserved.