Click or drag to resize

PROPDESC_AGGREGATION_TYPE Enumeration

Describes how property values are displayed when multiple items are selected. For a particular property, PROPDESC_AGGREGATION_TYPE describes how the property should be displayed when multiple items that have a value for the property are selected, such as whether the values should be summed, or averaged, or just displayed with the default "Multiple Values" string. Wraps Windows' PROPDESC_AGGREGATION_TYPE enumeration..

Namespace:  callback.ShellBoost.Core.WindowsPropertySystem
Assembly:  callback.CBFSShell (in callback.CBFSShell.dll) Version: 22.0.0.0
Syntax
C#
public enum PROPDESC_AGGREGATION_TYPE
Members
  Member nameValueDescription
PDAT_DEFAULT0 Display the string "Multiple Values".
PDAT_FIRST1 Display the first value in the selection.
PDAT_SUM2 Display the sum of the selected values. This flag is never returned for data types VT_LPWSTR, VT_BOOL, and VT_FILETIME.
PDAT_AVERAGE3 Display the numerical average of the selected values. This flag is never returned for data types VT_LPWSTR, VT_BOOL, and VT_FILETIME.
PDAT_DATERANGE4 Display the date range of the selected values. This flag is returned only for values of the VT_FILETIME data type.
PDAT_UNION5 Display a concatenated string of all the values. The order of individual values in the string is undefined. The concatenated string omits duplicate values; if a value occurs more than once, it appears only once in the concatenated string.
PDAT_MAX6 Display the highest of the selected values.
PDAT_MIN7 Display the lowest of the selected values.
See Also