Exemplo n.º 1
0
        internal SLDifferentialFormat Clone()
        {
            var df = new SLDifferentialFormat();

            df.HasAlignment       = HasAlignment;
            df.alignReal          = alignReal.Clone();
            df.HasProtection      = HasProtection;
            df.protectionReal     = protectionReal.Clone();
            df.HasNumberingFormat = HasNumberingFormat;
            df.nfFormatCode       = nfFormatCode.Clone();
            df.HasFont            = HasFont;
            df.fontReal           = fontReal.Clone();
            df.HasFill            = HasFill;
            df.fillReal           = fillReal.Clone();
            df.HasBorder          = HasBorder;
            df.borderReal         = borderReal.Clone();

            return(df);
        }