/// <summary> /// 根据需要在table中增加必要的行 /// </summary> private void AddNeedRow(XWPFTable tb, int count) { for (int i = 0; i < count; i++) { XWPFTableRow m_Row = tb.CreateRow(); m_Row.SetHeight(380); } }