Gets a collection of IDs of the DimensionStates that should be 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#
[DefaultValueAttribute(null)]
[TypeConverterAttribute(typeof(StringArrayConverter))]
public string[] InclusionDimensionIds { get; set; }
Visual Basic (Declaration)
<DefaultValueAttribute(Nothing)> _
<TypeConverterAttribute(GetType(StringArrayConverter))> _
Public Property InclusionDimensionIds As String()
Visual C++
[DefaultValueAttribute(nullptr)]
[TypeConverterAttribute(typeof(StringArrayConverter))]
public:
property array<String^>^ InclusionDimensionIds {
	array<String^>^ get ();
	void set (array<String^>^ value);
}

Remarks

If this array is not empty, then only dimensions with IDs in this collection are displayed, and the dimensions will be rendered in the order that they appear in the array.

See Also