ImageIndexConverter.GetStandardValues(ITypeDescriptorContext) Method

Definition

Returns a collection of standard index values for the image list associated with the specified format context.

public:
 override System::ComponentModel::TypeConverter::StandardValuesCollection ^ GetStandardValues(System::ComponentModel::ITypeDescriptorContext ^ context);
public override System.ComponentModel.TypeConverter.StandardValuesCollection GetStandardValues (System.ComponentModel.ITypeDescriptorContext context);
public override System.ComponentModel.TypeConverter.StandardValuesCollection GetStandardValues (System.ComponentModel.ITypeDescriptorContext? context);
override this.GetStandardValues : System.ComponentModel.ITypeDescriptorContext -> System.ComponentModel.TypeConverter.StandardValuesCollection
Public Overrides Function GetStandardValues (context As ITypeDescriptorContext) As TypeConverter.StandardValuesCollection

Parameters

context
ITypeDescriptorContext

An ITypeDescriptorContext that provides a format context, which can be used to extract additional information about the environment this type converter is being invoked from. This parameter or properties of this parameter can be null.

Returns

A TypeConverter.StandardValuesCollection that holds a standard set of valid index values. If no image list is found, this collection will contain a single object with a value of -1.

Remarks

Returns a collection of index values for image lists associated with the ITypeDescriptorContext.Instance property of the context parameter. If an ImageList is not found, then the parent of the component will be searched for such a list.

Typically the GetStandardValuesSupported method is called to before an attempt is made to use the GetStandardValues and GetStandardValuesExclusive methods.

Applies to

See also