Spread 8.0 Documentation
Example
Support Options

Glossary Item Box

Example


The following example sets the shape for a cell note.

C++

// Set the cell note color
m_Spread.SetTextTip(TextTipFixed);
m_Spread.SetCol(2);
m_Spread.SetRow(2);
m_Spread.SetCellNote('test');
m_Spread.SetCellNoteIndicatorShape(1);

Visual Basic

' Set the color for a text tip
fpSpread1.TextTip = TextTipFixed
fpSpread1.Col = 21
fpSpread1.Row = 2
fpSpread1.CellNote = "test"
fpSpread1.CellNoteIndicatorShape = 1

Copyright © GrapeCity, inc. All rights reserved.