| Conditions | 2 |
| Total Lines | 8 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | def get_AllTextLine(self): |
||
| 2 | """ |
||
| 3 | Return all the TextLine in the document |
||
| 4 | """ |
||
| 5 | ret = [] |
||
| 6 | for reg in self.get_AllRegions(['Text']): |
||
| 7 | ret += reg.get_TextLine() |
||
| 8 | return ret |
||
| 9 | |||
| 10 |