Example #1
0
 public void Copy(ArrowStyle arrow)
 {
     width  = arrow.width;
     height = arrow.height;
     offset = arrow.offset;
     dent   = arrow.dent;
     color  = arrow.color;
 }
Example #2
0
        public ArrowStyle Clone()
        {
            var arrow = new ArrowStyle();

            arrow.width  = width;
            arrow.height = height;
            arrow.offset = offset;
            arrow.dent   = dent;
            arrow.color  = color;
            return(arrow);
        }