BrightIdeasSoftware.ObjectListView.HandleCellToolTipShowing C# (CSharp) Method

HandleCellToolTipShowing() protected method

The cell tooltip control wants information about the tool tip that it should show.
protected HandleCellToolTipShowing ( object sender, ToolTipShowingEventArgs e ) : void
sender object
e ToolTipShowingEventArgs
return void
        protected virtual void HandleCellToolTipShowing(object sender, ToolTipShowingEventArgs e)
        {
            this.BuildCellEvent(e, this.PointToClient(Cursor.Position));
            if (e.Item != null) {
                e.Text = this.GetCellToolTip(e.ColumnIndex, e.RowIndex);
                this.OnCellToolTip(e);
            }
        }
ObjectListView