Given a component, returns its value range as a tuple of 2 values.
(self, component=0)
| 1901 | return "Array: " + self.Name |
| 1902 | |
| 1903 | def GetRange(self, component=0): |
| 1904 | """Given a component, returns its value range as a tuple of 2 values.""" |
| 1905 | array = self.FieldData.GetFieldData().GetArrayInformation(self.Name) |
| 1906 | range = array.GetComponentRange(component) |
| 1907 | return (range[0], range[1]) |
| 1908 | |
| 1909 | def __eq__(self, other): |
| 1910 | if (self is None and other is None): |
no test coverage detected