* \brief Convenience access method for visibility properties (instances * of BoolProperty). Return value is the visibility. Default is * visible==true, i.e., true is returned even if the property (\a * propertyKey) is not found. * * Thus, the return value has a different meaning than in the * GetVisibility method! * \sa GetVisibility * \sa IsOn */
| 703 | * \sa IsOn |
| 704 | */ |
| 705 | bool IsVisible(const mitk::BaseRenderer *renderer, |
| 706 | const char *propertyKey = "visible", |
| 707 | bool defaultIsOn = true) const |
| 708 | { |
| 709 | return IsOn(propertyKey, renderer, defaultIsOn); |
| 710 | } |
| 711 | |
| 712 | /** |
| 713 | * \brief Convenience method for setting color properties (instances of ColorProperty). |