Retrieves the collection of the allowed values of the enumeration if the setting has an enumerated list of allowable values. Namespace: Microsoft.ComponentStudio.ComponentPlatformInterface
Assembly: Microsoft.ComponentStudio.ComponentPlatformInterface (in microsoft.componentstudio.componentplatforminterface.dll)

Usage

Visual Basic
Dim settingDefinition1 As SettingDefinition

Dim returnValue As ICollection(Of Object)
returnValue = settingDefinition1.EnumerationValue

Syntax

Visual Basic
Public MustOverride ReadOnly Property EnumerationValue() As ICollection(Of Object)
C#
public abstract ICollection<object> EnumerationValue {get;}
C++
public:
property virtual ICollection<Object^>^ EnumerationValue {
		ICollection<Object^>^ get();
}
J#
public abstract ICollection<System.Object> get_EnumerationValue();
JScript
JScript does not support Generics.

Property Value

The collection of the allowed values of the enumeration if the setting has an enumerated list of allowable values, otherwise returns null.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Development Platforms

Windows XP Home Edition, Windows XP Professional, Windows Server 2003, Windows Vista, and Windows 2000

Target Platforms

See Also