If the control is visible
(&self)
| 457 | |
| 458 | /// If the control is visible |
| 459 | fn visible(&self) -> bool { |
| 460 | let comp = self.as_ref().borrow(); |
| 461 | |
| 462 | comp.visible |
| 463 | } |
| 464 | |
| 465 | /// If the control is visible |
| 466 | fn vis_state(&self) -> bool { |
no test coverage detected