Total Complexity | 2 |
Total Lines | 9 |
Duplicated Lines | 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 |