FlexPivot for WinForms
ShowScrollTip イベント (C1FlexGridBase)
使用例 

C1.Win.C1FlexGrid.4.5.2 アセンブリ > C1.Win.C1FlexGrid 名前空間 > C1FlexGridBase クラス : ShowScrollTip イベント
Fires before the vertical ScrollTip is displayed.
シンタックス
'宣言
 
Public Event ShowScrollTip As RowColToolTipEventHandler
public event RowColToolTipEventHandler ShowScrollTip
イベント データ

イベント ハンドラが、このイベントに関連するデータを含む、ToolTipEventArgs 型の引数を受け取りました。次の ToolTipEventArgs プロパティには、このイベントの固有の情報が記載されます。

プロパティ解説
Gets or sets a value indicating whether the operation should be canceled. C1.Win.C1FlexGrid.RowColEventArgsから継承されます。
Gets the index of the column that caused the event. C1.Win.C1FlexGrid.RowColEventArgsから継承されます。
Gets the index of the row that caused the event. C1.Win.C1FlexGrid.RowColEventArgsから継承されます。
Gets or sets the text to be displayed in the tooltip.  
解説

This event fires only if the ShowScrollTips flag is set in the ScrollOptions property.

It allows you to specify the text that will be displayed in the scroll tip.

使用例
The code below uses the ShowScrollTip event to display a scroll tip showing the value of the first cell that will become visible when the user stops scrolling.
_flex.ScrollOptions = ScrollFlags.DelayedScroll | ScrollFlags.ShowScrollTips;
void _flex_ShowScrollTip(object sender, ToolTipEventArgs e)
{
    e.ToolTipText = string.Format("row {0}", e.Row);
}
参照