Exemple #1
0
        public void copy2(headingStyle oth)
        {
            oth.bEnable = bEnable;
            oth.nLevel  = nLevel;
            oth.Fnt.clone(Fnt);
            oth.ParaFmt.clone(ParaFmt);

            return;
        }
Exemple #2
0
        public void clone(headingStyle oth)
        {
            bEnable = oth.bEnable;
            nLevel  = oth.nLevel;
            Fnt.clone(oth.Fnt);
            ParaFmt.clone(oth.ParaFmt);

            return;
        }