FarPoint.Win.SpreadJ アセンブリ > FarPoint.Win.Spread 名前空間 > SpreadView クラス : CellNoteIndicatorVisible プロパティ |
'Declaration Public Property CellNoteIndicatorVisible As Boolean
'使用法 Dim instance As SpreadView Dim value As Boolean instance.CellNoteIndicatorVisible = value value = instance.CellNoteIndicatorVisible
public bool CellNoteIndicatorVisible {get; set;}
セルのメモは、セルメモインジケータが表示されない場合は表示されません。セルのメモが表示されるかどうかには、TextTipPolicyの設定も関係します。セルのメモを表示するには、TextTipPolicyプロパティをTextTipPolicy.Off以外の値に設定する必要があります。
このプロパティは、ポインタがセルメモインジケータの上に置かれたときにTextTipFetchイベントが発生するかどうかも決定します。
FarPoint.Win.Spread.SpreadView sv = fpSpread1.GetRootWorkbook(); sv.Sheets[0].Cells[0, 0].Note = "This is a CellNote"; sv.CellNoteIndicatorVisible = false;
Dim sv As FarPoint.Win.Spread.SpreadView = FpSpread1.GetRootWorkbook sv.Sheets(0).Cells(0, 0).Note = "This is a CellNote" sv.CellNoteIndicatorVisible = False