Exemplo n.º 1
0
        /// <summary>
        ///   Clone this instance
        /// </summary>
        public override DrawObject Clone()
        {
            var drawLine = new DrawLine {_startPoint = _startPoint, _endPoint = _endPoint};

            FillDrawObjectFields(drawLine);
            return drawLine;
        }
Exemplo n.º 2
0
        /// <summary>
        ///   Clone this instance
        /// </summary>
        public override DrawObject Clone()
        {
            var drawLine = new DrawLine {
                _startPoint = _startPoint, _endPoint = _endPoint
            };

            FillDrawObjectFields(drawLine);
            return(drawLine);
        }