コード例 #1
0
        public void clone(headingStyle oth)
        {
            bEnable = oth.bEnable;
            nLevel  = oth.nLevel;
            Fnt.clone(oth.Fnt);
            ParaFmt.clone(oth.ParaFmt);

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

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

            return;
        }
コード例 #3
0
ファイル: tizhuStyle.cs プロジェクト: pachytald/docSword
        public void clone(tizhuStyle oth)
        {
            bEnable                 = oth.bEnable;
            strCapLabelName         = oth.strCapLabelName;
            capPos                  = oth.capPos;
            align                   = oth.align;
            strPrefix               = oth.strPrefix;
            strPostfix              = oth.strPostfix;
            bGetHeadingText         = oth.bGetHeadingText;
            bSnWhileSameHeadingText = oth.bSnWhileSameHeadingText;
            bScopeAfterToc          = oth.bScopeAfterToc;

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

            return;
        }
コード例 #4
0
ファイル: pageNumStyle.cs プロジェクト: pachytald/docSword
        public void clone(pageNumStyle oth)
        {
            bEnable = oth.bEnable;
            nSecNum = oth.nSecNum;

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

            nPgNumSnStyle           = oth.nPgNumSnStyle;
            bIncludeHeadingSn       = oth.bIncludeHeadingSn;
            nPgNumHeadingStartStyle = oth.nPgNumHeadingStartStyle;
            nPgNumHeadingSplittor   = oth.nPgNumHeadingSplittor;

            bPgNumFollowPrevSec = oth.bPgNumFollowPrevSec;
            nPgNumStartPageNum  = oth.nPgNumStartPageNum;

            return;
        }