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