Spread WPF 17
Spread WPF Documentation / Developer's Guide / Managing the User Interface / Displaying Tooltips
In This Topic
    Displaying Tooltips
    In This Topic

    You can display tooltips when resizing or scrolling in the control or when dragging or moving data.

    The following image displays a resize tooltip.

    An image dislaying resize tooltip in a spreadsheet

    The following image displays a scrolling tooltip.

    An image displaying scrolling tooltip in a spreadsheet

    You can set the ShowDragFillTip property to display the drag fill tooltip and the ShowDragDropTip property to display the drag drop tooltip.

    Using Code

    The following example sets the ShowResizeTip and ShowScrollTip properties.

    CS Copy Code
    gcSpreadSheet1.ShowResizeTip = GrapeCity.Windows.SpreadSheet.Data.ShowResizeTip.Both;
    gcSpreadSheet1.ShowScrollTip = GrapeCity.Windows.SpreadSheet.Data.ShowScrollTip.Both;
    VB.NET Copy Code
    GcSpreadSheet1.ShowResizeTip = GrapeCity.Windows.SpreadSheet.Data.ShowResizeTip.Both
    GcSpreadSheet1.ShowScrollTip = GrapeCity.Windows.SpreadSheet.Data.ShowScrollTip.Both
    See Also