AspNetEdit.UI.PropertyEditors.EnumEditor.EnumEditor C# (CSharp) Метод

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

public EnumEditor ( GridRow parentRow ) : System
parentRow AspNetEdit.UI.GridRow
Результат System
        public EnumEditor(GridRow parentRow)
            : base(parentRow)
        {
            if (!parentRow.PropertyDescriptor.PropertyType.IsEnum)
                throw new Exception ("property is not an enum");
        }