Skip to main content
A newer version of this page is available. .

WinExplorerView.CustomContextButtonToolTip Event

Allows hints for the RatingContextButton objects displayed in the current WinExplorerView to be customized.

Namespace: DevExpress.XtraGrid.Views.WinExplorer

Assembly: DevExpress.XtraGrid.v18.2.dll

Declaration

[DXCategory("Context Buttons")]
public event WinExplorerViewContextButtonToolTipEventHandler CustomContextButtonToolTip

Event Data

The CustomContextButtonToolTip event's data class is WinExplorerViewContextButtonToolTipEventArgs. The following properties provide information specific to this event:

Property Description
Item Gets the currently processed context button.
RowHandle Gets the row handle of the currently processed data record.
Text Gets or sets the tooltip text.
Value Gets the rating context button’s value for which a tooltip needs to be provided.

Remarks

The CustomContextButtonToolTip event allows you to customize hints for each grading scale point of the RatingContextButton objects displayed in the current view in a centralized way. This event is raised after the button’s ContextItem.CustomToolTip event is fired. Thus, hints specified using the current event override hints specified for a particular button using the ContextItem.CustomToolTip event. See the ContextItem.CustomToolTip event for details.

See Also