Esempio n. 1
0
        /// <summary>
        /// Copies this positioned cell's values to another positioned cell.
        /// </summary>
        /// <param name="destination">The cell to write to.</param>
        public void Copy(PositionedCell destination)
        {
            base.Copy(destination);

            destination.X = this.X;
            destination.Y = this.Y;
            destination.ActualX = this.ActualX;
            destination.ActualY = this.ActualY;
        }
Esempio n. 2
0
        /// <summary>
        /// Copies this positioned cell's values to another positioned cell.
        /// </summary>
        /// <param name="destination">The cell to write to.</param>
        public void Copy(PositionedCell destination)
        {
            base.Copy(destination);

            destination.X       = this.X;
            destination.Y       = this.Y;
            destination.ActualX = this.ActualX;
            destination.ActualY = this.ActualY;
        }