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

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

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