Determines if the list of standard values returned from GetStandardValues is an exclusive list. If the list is exclusive, then no other values are valid, such as in an enum data type. If the list is not exclusive, then there are other valid values besides the list of standard values GetStandardValues provides.
[Visual Basic] Overrides Public Function GetStandardValuesExclusive( _ ByVal context As ITypeDescriptorContext _ ) As Boolean [C#] public override bool GetStandardValuesExclusive( ITypeDescriptorContext context ); [C++] public: override bool GetStandardValuesExclusive( ITypeDescriptorContext* context ); [JScript] public override function GetStandardValuesExclusive( context : ITypeDescriptorContext ) : Boolean;
True if the collection returned from GetStandardValues is an exhaustive list of possible values, or false if other values are possible. The default for this method always returns false;
ListPropertyConverter Class | ListPropertyConverter Members | System.WinForms Namespace