Ejemplo n.º 1
0
        public IndentTheme Clone()
        {
            var inst = new IndentTheme();

            inst.ContentType = ContentType;
            foreach (var item in LineFormats)
            {
                inst.LineFormats[item.Key] = item.Value.Clone(inst);
            }
            inst.Behavior     = Behavior.Clone();
            inst.CaretHandler = CaretHandler;
            return(inst);
        }