Canguro.Controller.PropertyGrid.FrameSectionConverter.GetStandardValues C# (CSharp) Method

GetStandardValues() public method

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.
return System.ComponentModel.TypeConverter.StandardValuesCollection
        public override System.ComponentModel.TypeConverter.StandardValuesCollection GetStandardValues(System.ComponentModel.ITypeDescriptorContext context)
        {
            string[] sections = { "W10" };
            return new StandardValuesCollection(sections);
        }