Пример #1
0
        public void copy2(listParaStyle oth)
        {
            oth.bEnable = bEnable;
            oth.nLevel  = nLevel;

            oth.Fnt.clone(Fnt);
            oth.ParaFmt.clone(ParaFmt);

            return;
        }
Пример #2
0
        public void clone(listParaStyle oth)
        {
            bEnable = oth.bEnable;
            nLevel  = oth.nLevel;

            Fnt.clone(oth.Fnt);
            ParaFmt.clone(oth.ParaFmt);

            return;
        }