/// <summary> /// 获取表格正文 /// </summary> public List <Row> GetBody() { return(_body == null ? new List <Row>() : _body.GetRows()); }
/// <summary> /// 获取页脚 /// </summary> public List <Row> GetFooter() { return(_footer == null ? new List <Row>() : _footer.GetRows()); }
/// <summary> /// 获取表头 /// </summary> public List <Row> GetHeader() { return(_header.GetRows()); }