PowerTools SPREAD for Windows Forms 8.0J
NoteIndicatorPosition プロパティ (Cell)


セルのセルノートインジケーターの位置を取得または設定します。
構文
'Declaration
 
Public Property NoteIndicatorPosition As NoteIndicatorPosition
'使用法
 
Dim instance As Cell
Dim value As NoteIndicatorPosition
 
instance.NoteIndicatorPosition = value
 
value = instance.NoteIndicatorPosition
public NoteIndicatorPosition NoteIndicatorPosition {get; set;}
次のサンプルコードは、NoteIndicatorPostionプロパティを設定します。
fpSpread1.ActiveSheet.SetNote(2, 0, "Head of Development");
FarPoint.Win.Spread.DrawingSpace.StickyNoteStyleInfo nsinfo = new FarPoint.Win.Spread.DrawingSpace.StickyNoteStyleInfo();
nsinfo = fpSpread1.ActiveSheet.GetStickyNoteStyleInfo(2, 0);
nsinfo.BackColor = Color.Bisque;
nsinfo.Font = new Font("Tahoma", 24);
nsinfo.ForeColor = Color.Cyan;
nsinfo.Width = 320;
nsinfo.ShapeOutlineColor = Color.Cyan;
nsinfo.ShapeOutlineThickness = 1;
nsinfo.ShadowOffsetX = 3;
nsinfo.ShadowOffsetY = 3;
nsinfo.MarginLeft = 5;
fpSpread1.ActiveSheet.SetStickyNoteStyleInfo(2, 0, nsinfo);
fpSpread1.Sheets[0].Cells[2, 0].NoteIndicatorPosition = FarPoint.Win.Spread.NoteIndicatorPosition.BottomLeft;
FpSpread1.ActiveSheet.SetNote(2, 0, "Head of Development")
Dim nsinfo As FarPoint.Win.Spread.DrawingSpace.StickyNoteStyleInfo = New FarPoint.Win.Spread.DrawingSpace.StickyNoteStyleInfo()
nsinfo = FpSpread1.ActiveSheet.GetStickyNoteStyleInfo(2, 0)
nsinfo.BackColor = Color.Bisque
nsinfo.Font = New Font("Tahoma", 12)
nsinfo.ForeColor = Color.Cyan
nsinfo.Width = 250
nsinfo.ShapeOutlineColor = Color.Cyan
nsinfo.ShapeOutlineThickness = 1
nsinfo.ShadowOffsetX = 3
nsinfo.ShadowOffsetY = 3
nsinfo.MarginLeft = 5
FpSpread1.ActiveSheet.SetStickyNoteStyleInfo(2, 0, nsinfo)
FpSpread1.Sheets(0).Cells(2, 0).NoteIndicatorPosition = FarPoint.Win.Spread.NoteIndicatorPosition.BottomLeft
参照

Cell クラス
Cell メンバ

 

 


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