CodeTV.VideoEditor.GetEditStyle C# (CSharp) Method

GetEditStyle() public method

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