wpf-devexpress-dot-xpf-dot-propertygrid-dot-propertygridcontrol-e6c1a500.md
Gets or sets the property highlighting mode for the entire property grid. This is a dependency property.
Namespace : DevExpress.Xpf.PropertyGrid
Assembly : DevExpress.Xpf.PropertyGrid.v25.2.dll
NuGet Package : DevExpress.Wpf.PropertyGrid
public HeaderHighlightingMode HighlightingMode { get; set; }
Public Property HighlightingMode As HeaderHighlightingMode
| Type | Description |
|---|---|
| HeaderHighlightingMode |
A HeaderHighlightingMode enumeration that specifies the property highlighting mode.
|
Available values:
| Name | Description |
|---|---|
| None |
Neither the header cell, nor the value cell is highlighted.
| | OnlyHeader |
Only the header cell is highlighted.
| | OnlyContent |
Only the value cell is highlighted.
| | HeaderAndContent |
Both the header cell and the value cell are highlighted.
|
Use the HighlightingMode property to specify the property highlighting mode for the entire property grid.
To set the highlighting mode for individual properties, use the PropertyDefinitionBase.HighlightingMode property.
See Also