BrightIdeasSoftware.ObjectListView.UpdateCellToolTipHandle C# (CSharp) Method

UpdateCellToolTipHandle() protected method

Update the handle used by our cell tooltip to be the tooltip used by the underlying Windows listview control.
protected UpdateCellToolTipHandle ( ) : void
return void
        protected virtual void UpdateCellToolTipHandle()
        {
            if (this.cellToolTip != null && this.cellToolTip.Handle == IntPtr.Zero)
                this.cellToolTip.AssignHandle(NativeMethods.GetTooltipControl(this));
        }
ObjectListView