BrightIdeasSoftware.ObjectListView.ProcessHyperlinkClicked C# (CSharp) Method

ProcessHyperlinkClicked() protected method

Tell the world that a hyperlink was clicked and if the event isn't handled, do the default processing.
protected ProcessHyperlinkClicked ( CellClickEventArgs e ) : void
e CellClickEventArgs
return void
        protected virtual void ProcessHyperlinkClicked(CellClickEventArgs e)
        {
            HyperlinkClickedEventArgs args = new HyperlinkClickedEventArgs();
            args.HitTest = e.HitTest;
            args.ListView = this;
            args.Location = new Point(-1, -1);
            args.Item = e.Item;
            args.SubItem = e.SubItem;
            args.Model = e.Model;
            args.ColumnIndex = e.ColumnIndex;
            args.Column = e.Column;
            args.RowIndex = e.RowIndex;
            args.ModifierKeys = Control.ModifierKeys;
            args.Url = e.SubItem.Url;
            this.OnHyperlinkClicked(args);
            if (!args.Handled) {
                this.StandardHyperlinkClickedProcessing(args);
            }
        }
ObjectListView