示例#1
0
        /// <summary>
        /// Copies contents (attributes and children) to the destination element.
        /// </summary>
        /// <param name="Destination">Destination element</param>
        public override void CopyContents(ILayoutElement Destination)
        {
            base.CopyContents(Destination);

            if (Destination is Vertices Dest)
            {
                Dest.points = Dest.GetVertices();
            }
        }