Skip to main content
All docs
V25.1
  • BandedGridView.HyperlinkClick Event

    Fires when a hyperlink in a column or band header is activated.

    Namespace: DevExpress.XtraGrid.Views.BandedGrid

    Assembly: DevExpress.XtraGrid.v25.1.dll

    NuGet Packages: DevExpress.Win.Grid, DevExpress.Win.Navigation

    Declaration

    [DXCategory("Action")]
    public event EventHandler<BandedGridHyperlinkClickEventArgs> HyperlinkClick

    Event Data

    The HyperlinkClick event's data class is DevExpress.XtraGrid.Views.BandedGrid.BandedGridHyperlinkClickEventArgs.

    Remarks

    You can display hyperlinks in column and band headers if the OptionsView.AllowHtmlDrawHeaders property is enabled. Handle the HyperlinkClick event to perform actions when a hyperlink is clicked.

    See the GridView.HyperlinkClick topic for more information. The BandedGridView.HyperlinkClick and GridView.HyperlinkClick events are similar. The difference is that the BandedGridView.HyperlinkClick event contains information on the band where the hyperlink has been clicked.

    See Also