Returns whether this object supports a standard set of values that can be picked from a list, using the specified context.

Namespace: MonoSoftware.Core
Assembly: MonoSoftware.Core (in MonoSoftware.Core.dll) Version: 1.0.40.669 (1.0.40.669)

Syntax

C#
public override bool GetStandardValuesSupported(
	ITypeDescriptorContext context
)
Visual Basic
Public Overrides Function GetStandardValuesSupported ( 
	context As ITypeDescriptorContext
) As Boolean
Visual C++
public:
virtual bool GetStandardValuesSupported(
	ITypeDescriptorContext^ context
) override
F#
abstract GetStandardValuesSupported : 
        context : ITypeDescriptorContext -> bool 
override GetStandardValuesSupported : 
        context : ITypeDescriptorContext -> bool 

Parameters

context
Type: System.ComponentModel..::..ITypeDescriptorContext
An System.ComponentModel.ITypeDescriptorContext that provides a format context.

Return Value

Type: Boolean
true if System.ComponentModel.TypeConverter.GetStandardValues() should be called to find a common set of values the object supports; otherwise, false.

See Also