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.3.0 (2.1.3.622)

Syntax

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

Remarks

This list of dimensions takes precendence over InclusionDimensionIds.

See Also