GrapeCity SPREAD for Windows Forms 11.0J
GetNoteBounds メソッド


セルの行インデックス
セルの列インデックス
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
セルの列インデックス

戻り値の型

セル ノートの境界を含む Rectangle
次のサンプル コードは、セル ノートの境界を返します。
fpSpread1.ActiveSheet.SetNote(2, 0, "Head of Development");
fpSpread1.ActiveSheet.Cells(2, 0).NoteStyle = FarPoint.Win.Spread.NoteStyle.StickyNote;
Rectangle r = fpSpread1.ActiveSheet.GetNoteBounds(2, 0);
MessageBox.Show(r.Height.ToString());
FpSpread1.ActiveSheet.SetNote(2, 0, "Head of Development")
FpSpread1.ActiveSheet.Cells(2, 0).NoteStyle = FarPoint.Win.Spread.NoteStyle.StickyNote
Dim r As Rectangle = FpSpread1.ActiveSheet.GetNoteBounds(2, 0)
MessageBox.Show(r.Height.ToString())
参照

SheetView クラス
SheetView メンバ

 

 


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