Example #1
0
 public ScribbleStrip(ScribbleStrip src)
 {
     content              = new StringParameter(src.content);
     color                = new ColorParameter(src.color);
     fontSize             = new DoubleParameter(src.fontSize);
     scribbleStripCommand = src.scribbleStripCommand;
 }
Example #2
0
        public override void CopyValueFrom(Parameter p, bool copyMinMax = true)
        {
            ColorParameter src = (ColorParameter)p;

            this.value          = src.value;
            this.Enabled        = src.Enabled;
            this.MultipleValues = src.MultipleValues;
        }
Example #3
0
 public ColorParameter(ColorParameter src) : base(src)
 {
     this.value = src.value;
 }