internal RowFormat(RowFormat ri)
        {
            _rowCellFormat = new CellFormat(ri.RowCellFormat);
            _cellFormats = new ArrayList();
            _widthA = new CellWidth(ri.WidthA);
            _widthB = new CellWidth(ri.WidthB);
            _widthRow = new CellWidth(ri.WidthRow);
            _nTrgaph = ri.Trgaph;
            _dir = ri.Dir;
            _nTrleft = ri._nTrleft;

            for (int i = 0; i < ri.CellCount; i++)
            {
                _cellFormats.Add(new CellFormat(ri.NthCellFormat(i)));
            }
        }
 internal RowFormat()
 {
     _rowCellFormat = new CellFormat();
     _widthA = new CellWidth();
     _widthB = new CellWidth();
     _widthRow = new CellWidth();
     _cellFormats = new ArrayList();
     _dir = DirState.DirLTR;
     _nTrgaph = -1;
     _nTrleft = 0;
 }
 internal CellFormat(CellFormat cf)
 {
     CellX = cf.CellX;
     IsCellXSet = cf.IsCellXSet;
     Width = new CellWidth(cf.Width);
     CB = cf.CB;
     CF = cf.CF;
     Shading = cf.Shading;
     PaddingTop = cf.PaddingTop;
     PaddingBottom = cf.PaddingBottom;
     PaddingRight = cf.PaddingRight;
     PaddingLeft = cf.PaddingLeft;
     BorderLeft = new BorderFormat(cf.BorderLeft);
     BorderRight = new BorderFormat(cf.BorderRight);
     BorderBottom = new BorderFormat(cf.BorderBottom);
     BorderTop = new BorderFormat(cf.BorderTop);
     SpacingTop = cf.SpacingTop;
     SpacingBottom = cf.SpacingBottom;
     SpacingRight = cf.SpacingRight;
     SpacingLeft = cf.SpacingLeft;
     VAlign = VAlign.AlignTop;
     IsPending = true;
     IsHMerge = cf.IsHMerge;
     IsHMergeFirst = cf.IsHMergeFirst;
     IsVMerge = cf.IsVMerge;
     IsVMergeFirst = cf.IsVMergeFirst;
 }
        internal CellFormat()
        {
            BorderLeft = new BorderFormat();
            BorderRight = new BorderFormat();
            BorderBottom = new BorderFormat();
            BorderTop = new BorderFormat();

            Width = new CellWidth();

            SetDefaults();

            IsPending = true;
        }
 internal CellWidth(CellWidth cw)
 {
     Type = cw.Type;
     Value = cw.Value;
 }
 // Token: 0x0600337F RID: 13183 RVA: 0x000E6437 File Offset: 0x000E4637
 internal CellWidth(CellWidth cw)
 {
     this.Type  = cw.Type;
     this.Value = cw.Value;
 }