visible property
bool
get
visible
Gets or sets whether the user may view any of the objects in this layer.
The default value is true -- all visible Parts are drawn. When this property is false, all of the "find..." methods will fail to find parts that are in this layer.
Implementation
_i2.bool get visible => _i4.getProperty(
this,
'visible',
);
set
visible
(bool value)
Implementation
set visible(_i2.bool value) {
_i4.setProperty(
this,
'visible',
value,
);
}