Gets the unique Id of this View. @see: L{ViewClient.__splitAttrs()} for a discussion on B{Unique Ids}
(self)
| 605 | return 0 |
| 606 | |
| 607 | def getUniqueId(self): |
| 608 | """ |
| 609 | Gets the unique Id of this View. |
| 610 | |
| 611 | @see: L{ViewClient.__splitAttrs()} for a discussion on B{Unique Ids} |
| 612 | """ |
| 613 | |
| 614 | try: |
| 615 | return self.map['uniqueId'] |
| 616 | except: |
| 617 | return None |
| 618 | |
| 619 | def getVisibility(self): |
| 620 | """ |
no outgoing calls