PowerTools SPREAD for Windows Forms 8.0J
GetNoteBounds(Int32,Int32) メソッド


セルの行インデックス
セルの列インデックス
NoteStyle が StickyNote の場合、指定したセルのセル ノートの矩形を取得します。
構文
'Declaration
 
Public Function GetNoteBounds( _
   ByVal row As Integer, _
   ByVal column As Integer _
) As Rectangle
'使用法
 
Dim instance As SheetView
Dim row As Integer
Dim column As Integer
Dim value As Rectangle
 
value = instance.GetNoteBounds(row, column)
public Rectangle GetNoteBounds( 
   int row,
   int column
)

パラメータ

row
セルの行インデックス
column
セルの列インデックス
次のサンプルコードは、GetNoteBoundsメソッドを使用します。
fpSpread1.Sheets[0].SetNote(0, 0, "test");
fpSpread1.Sheets[0].Cells[0, 0].NoteStyle = FarPoint.Win.Spread.NoteStyle.StickyNote;
listBox1.Items.Add(fpSpread1.Sheets[0].GetNoteBounds(0,0).ToString());
FpSpread1.Sheets(0).SetNote(0, 0, "test")
FpSpread1.Sheets(0).Cells(0, 0).NoteStyle = FarPoint.Win.Spread.NoteStyle.StickyNote
listBox1.Items.Add(FpSpread1.Sheets(0).GetNoteBounds(0,0).ToString())
参照

SheetView クラス
SheetView メンバ

 

 


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