Skip to main content
All docs
V24.2

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

BandedGridView.HyperlinkClick Event

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

Namespace: DevExpress.XtraGrid.Views.BandedGrid

Assembly: DevExpress.XtraGrid.v24.2.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