示例#1
0
        public void copy2(textBodyStyle oth)
        {
            oth.bEnable = bEnable;

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

            return;
        }
示例#2
0
        public void clone(textBodyStyle oth)
        {
            bEnable = oth.bEnable;

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

            return;
        }