FarPoint.Win.SpreadJ アセンブリ > FarPoint.Win.Spread 名前空間 > FpSpread クラス : CellNoteIndicatorVisible プロパティ |
'Declaration Public Property CellNoteIndicatorVisible As Boolean
'使用法 Dim instance As FpSpread Dim value As Boolean instance.CellNoteIndicatorVisible = value value = instance.CellNoteIndicatorVisible
public bool CellNoteIndicatorVisible {get; set;}
セルのメモは、セルメモインジケータが表示されない場合は表示されません。セルのメモが表示されるかどうかには、TextTipPolicyの設定も関係します。セルのメモを表示するには、TextTipPolicyプロパティをTextTipPolicy.Off以外の値に設定する必要があります。
このプロパティは、ポインタがセルメモインジケータの上に置かれたときにTextTipFetchイベントが発生するかどうかも決定します。
FarPoint.Win.Spread.FpSpread fpSpread1 = new FarPoint.Win.Spread.FpSpread(); FarPoint.Win.Spread.SheetView shv = new FarPoint.Win.Spread.SheetView(); fpSpread1.Location = new Point(10, 10); fpSpread1.Height = 200; fpSpread1.Width = 400; Controls.Add(fpSpread1); fpSpread1.Sheets.Add(shv); fpSpread1.CellNoteIndicatorVisible = true; fpSpread1.ActiveSheet.SetNote(0, 0, "TestNote");
Dim fpSpread1 As New FarPoint.Win.Spread.FpSpread() Dim shv As New FarPoint.Win.Spread.SheetView() fpSpread1.Location = New Point(10, 10) fpSpread1.Height = 200 fpSpread1.Width = 400 Controls.Add(fpSpread1) fpSpread1.Sheets.Add(shv) fpSpread1.CellNoteIndicatorVisible = True fpSpread1.ActiveSheet.SetNote(0, 0, "TestNote")