CodeTV.VideoEditor.GetEditStyle C# (CSharp) Метод

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

public GetEditStyle ( ITypeDescriptorContext context ) : UITypeEditorEditStyle
context ITypeDescriptorContext
Результат UITypeEditorEditStyle
        public override UITypeEditorEditStyle GetEditStyle(ITypeDescriptorContext context)
        {
            if (!this.useTheBaseEditor && context != null && context.Instance != null)
                return UITypeEditorEditStyle.Modal;
            else
                return base.GetEditStyle(context);
        }