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


ユーザーがキーボードまたはマウスを使用してセルにフォーカスを設定できるかどうかを取得または設定します。
構文
'Declaration
 
Public Overridable Property CanFocus As Boolean
'使用法
 
Dim instance As StyleInfo
Dim value As Boolean
 
instance.CanFocus = value
 
value = instance.CanFocus
public virtual bool CanFocus {get; set;}

プロパティ値

Boolean:このスタイルのセルがフォーカスを受け取る場合は True、それ以外の場合は False
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-2015, GrapeCity inc. All rights reserved.