BrightIdeasSoftware.ObjectListView.HandleHeaderRightClick C# (CSharp) Method

HandleHeaderRightClick() protected method

The user has right clicked on the column headers. Do whatever is required
protected HandleHeaderRightClick ( int columnIndex ) : bool
columnIndex int
return bool
        protected virtual bool HandleHeaderRightClick(int columnIndex)
        {
            ColumnClickEventArgs eventArgs = new ColumnClickEventArgs(columnIndex);
            this.OnColumnRightClick(eventArgs);

            // TODO: Allow users to say they have handled this event

            return this.ShowHeaderRightClickMenu(columnIndex, Cursor.Position);
        }

Same methods

ObjectListView::HandleHeaderRightClick ( ) : bool
ObjectListView