The PivotHighlightType enumeration contains conditions, according to which the highlighted data is selected.
It is used by the IPivotHighlightItem.ConditionType property.
Value | Brief description |
0 | None. No highlighting. |
1 | EqA. Equal to A. |
2 | NEqA. Not equal to A. |
3 | GA. Greater than A. |
4 | LA. Less than A. |
5 | GEqA. Greater or equal to A. |
6 | LEqA. Less than or equal to A. |
7 | NLAandNGB. Between A and B inclusively. |
8 | LAorGB. Less than A or greater than B. |
9 | ALargest. The greatest A. |
10 | ALowest. The least A. |
11 | SelectionSet. Data that corresponds to the specified selection. |
If the condition EqA, NEqA, GA, LA, GEqA, LEqA, ALargest, ALowest, is selected, the value used in the comparison should be determined in the IPivotHighlightItem.ConditionValueA property.
When the NLAandNGB and LAorGB conditions are selected, values are specified in the IPivotHighlightItem.ConditionValueA and IPivotHighlightItem.ConditionValueB properties.
When the SelectionSet condition is selected, in the IPivotHighlightItem.ConditionValueA property set selection of highlighted data, and in the IPivotHighlightItem.ConditionValueB property specify color. The selection is described by the IDimSelectionSet interface and should be a compound selection including selections of all data sources, which data should be highlighted. The color is described by the IGxColor interface.
NOTE. Work with the SelectionSet condition is available only on working with regular reports.
See also: