| DataGridFilterColumnControlSelectableValues Property |
Returns all distinct selectable values of this column as string.
This can be used to e.g. feed the ItemsSource of an Excel-like auto-filter, that only shows the values that are currently selectable, depending on the other filters.
Namespace:
DataGridExtensions
Assembly:
DataGridExtensions (in DataGridExtensions.dll)
Syntax public IEnumerable<string> SelectableValues { get; }
Public ReadOnly Property SelectableValues As IEnumerable(Of String)
Get
Property Value
Type:
IEnumerableStringRemarks
You may need to include "NotifyOnTargetUpdated=true" in the binding of the DataGrid.ItemsSource to get up-to-date
values when the source object changes.
See Also