Example #1
0
        public GLine Clone()
        {
            GLine nl = new GLine(_text, _firstWord.DeepClone());

            nl._eolType = _eolType;
            nl._id      = _id;
            return(nl);
        }
Example #2
0
        public GWord DeepClone()
        {
            GWord w = new GWord(_decoration, _offset, _charGroup);

            if (_next != null)
            {
                w._next = _next.DeepClone();
            }
            return(w);
        }