Canguro.Controller.PropertyGrid.FrameSectionConverter.GetStandardValues C# (CSharp) Метод

GetStandardValues() публичный Метод

public GetStandardValues ( System context ) : System.ComponentModel.TypeConverter.StandardValuesCollection
context System An that provides a format context that can be used to extract additional information about the environment from which this converter is invoked. This parameter or properties of this parameter can be null.
Результат System.ComponentModel.TypeConverter.StandardValuesCollection
        public override System.ComponentModel.TypeConverter.StandardValuesCollection GetStandardValues(System.ComponentModel.ITypeDescriptorContext context)
        {
            string[] sections = { "W10" };
            return new StandardValuesCollection(sections);
        }