public ShapeRule Add(string name)
        {
            ShapeRule shapeRule = new ShapeRule();

            shapeRule.Name = name;
            Add(shapeRule);
            return(shapeRule);
        }
Esempio n. 2
0
        public override object GetValue(object component)
        {
            ShapeRule shapeRule = (ShapeRule)component;

            if (Name == "FromValue")
            {
                return(field.Parse(shapeRule.FromValue));
            }
            return(field.Parse(shapeRule.ToValue));
        }
Esempio n. 3
0
        public override void SetValue(object component, object value)
        {
            ShapeRule shapeRule = (ShapeRule)component;

            if (Name == "FromValue")
            {
                shapeRule.FromValue = Field.ToStringInvariant(value);
            }
            else
            {
                shapeRule.ToValue = Field.ToStringInvariant(value);
            }
        }
        public override PropertyDescriptorCollection GetProperties(ITypeDescriptorContext context, object value, Attribute[] attributes)
        {
            PropertyDescriptorCollection properties = TypeDescriptor.GetProperties(value, noCustomTypeDesc: false);
            ShapeRule shapeRule = (ShapeRule)value;
            Field     field     = shapeRule.GetField();
            PropertyDescriptorCollection propertyDescriptorCollection = new PropertyDescriptorCollection(null);

            for (int i = 0; i < properties.Count; i++)
            {
                if (!properties[i].IsBrowsable)
                {
                    continue;
                }
                if (shapeRule.UseCustomColors && (properties[i].Name == "ColorCount" || properties[i].Name == "ColoringMode" || properties[i].Name == "ColorPalette" || properties[i].Name == "FromColor" || properties[i].Name == "MiddleColor" || properties[i].Name == "ToColor" || properties[i].Name == "BorderColor" || properties[i].Name == "GradientType" || properties[i].Name == "HatchStyle" || properties[i].Name == "Text" || properties[i].Name == "ToolTip" || properties[i].Name == "SecondaryColor"))
                {
                    propertyDescriptorCollection.Add(TypeDescriptor.CreateProperty(value.GetType(), properties[i], new ReadOnlyAttribute(isReadOnly: true)));
                }
                else if (properties[i].Name == "ColorPalette" && shapeRule.ColoringMode != ColoringMode.DistinctColors)
                {
                    propertyDescriptorCollection.Add(TypeDescriptor.CreateProperty(value.GetType(), properties[i], new ReadOnlyAttribute(isReadOnly: true)));
                }
                else if ((properties[i].Name == "FromColor" || properties[i].Name == "MiddleColor" || properties[i].Name == "ToColor") && shapeRule.ColoringMode == ColoringMode.DistinctColors)
                {
                    propertyDescriptorCollection.Add(TypeDescriptor.CreateProperty(value.GetType(), properties[i], new ReadOnlyAttribute(isReadOnly: true)));
                }
                else if (properties[i].Name == "CustomColors" && !shapeRule.UseCustomColors)
                {
                    ArrayList arrayList = new ArrayList();
                    foreach (Attribute attribute in properties[i].Attributes)
                    {
                        if (attribute is CategoryAttribute || attribute is DescriptionAttribute)
                        {
                            arrayList.Add(attribute);
                        }
                    }
                    propertyDescriptorCollection.Add(new ReadOnlyCollectionDescriptor(properties[i].Name, (Attribute[])arrayList.ToArray(typeof(Attribute))));
                }
                else if (field != null && (properties[i].Name == "FromValue" || properties[i].Name == "ToValue"))
                {
                    if (field.IsNumeric())
                    {
                        Attribute[] array = new Attribute[properties[i].Attributes.Count];
                        properties[i].Attributes.CopyTo(array, 0);
                        ShapeRulePropertyDescriptor value2 = new ShapeRulePropertyDescriptor(field, properties[i].Name, array);
                        propertyDescriptorCollection.Add(value2);
                    }
                    else
                    {
                        propertyDescriptorCollection.Add(TypeDescriptor.CreateProperty(value.GetType(), properties[i], new ReadOnlyAttribute(isReadOnly: true)));
                    }
                }
                else if (properties[i].Name == "LegendText" && shapeRule.ShowInLegend == "(none)")
                {
                    propertyDescriptorCollection.Add(TypeDescriptor.CreateProperty(value.GetType(), properties[i], new ReadOnlyAttribute(isReadOnly: true)));
                }
                else
                {
                    propertyDescriptorCollection.Add(properties[i]);
                }
            }
            return(propertyDescriptorCollection);
        }
 public void Remove(ShapeRule value)
 {
     base.List.Remove(value);
 }
 public int Add(ShapeRule value)
 {
     return(base.List.Add(value));
 }