CodeTV.FrequencyEditor.GetEditStyle C# (CSharp) Method

GetEditStyle() public method

public GetEditStyle ( ITypeDescriptorContext context ) : UITypeEditorEditStyle
context ITypeDescriptorContext
return UITypeEditorEditStyle
        public override UITypeEditorEditStyle GetEditStyle(ITypeDescriptorContext context)
        {
            if (context != null && context.Instance != null)
                return UITypeEditorEditStyle.Modal;
            return base.GetEditStyle(context);
        }