BrightIdeasSoftware.ObjectListView.GetHeaderToolTip C# (CSharp) Method

GetHeaderToolTip() public method

Return the tooltip that should be shown when the mouse is hovered over the given column
public GetHeaderToolTip ( int columnIndex ) : String
columnIndex int The column index whose tool tip is to be fetched
return String
        public virtual String GetHeaderToolTip(int columnIndex)
        {
            OLVColumn column = this.GetColumn(columnIndex);
            if (column == null)
                return null;
            String tooltip = column.ToolTipText;
            if (this.HeaderToolTipGetter != null)
                tooltip = this.HeaderToolTipGetter(column);
            return tooltip;
        }
ObjectListView