Gets a collection of IDs of the DimensionStates that should be not displayed by this control.

Namespace:  Endeca.Web.UI.WebControls
Assembly:  Endeca.Web.UI.WebControls (in Endeca.Web.UI.WebControls.dll) Version: 2.1.1.0 (2.1.1.620)

Syntax

C#
[DefaultValueAttribute(null)]
[TypeConverterAttribute(typeof(StringArrayConverter))]
public string[] ExclusionDimensionIds { get; set; }
Visual Basic (Declaration)
<DefaultValueAttribute(Nothing)> _
<TypeConverterAttribute(GetType(StringArrayConverter))> _
Public Property ExclusionDimensionIds As String()
Visual C++
[DefaultValueAttribute(nullptr)]
[TypeConverterAttribute(typeof(StringArrayConverter))]
public:
property array<String^>^ ExclusionDimensionIds {
	array<String^>^ get ();
	void set (array<String^>^ value);
}

Remarks

This list of dimensions takes precendence over InclusionDimensionIds.

See Also