shadowVisible property

bool? shadowVisible

Gets or sets whether or not this GraphObject will be shadowed inside a Part that has Part#isShadowed set to true.

The default is null, which means this GraphObject will obey the default shadow rules (see Part#isShadowed).

A value of true or false will ensure that this part is shadowed or not regardless of the default shadow rules, but this GraphObject's shadowed status will not affect other GraphObjects in the Part.

Typically this property does not need to be set, but you may need to set this value to false on GraphObjects inside a Part that you do not wish to be shadowed.

Implementation

_i2.bool? get shadowVisible => _i4.getProperty(
      this,
      'shadowVisible',
    );
void shadowVisible=(bool? value)

Implementation

set shadowVisible(_i2.bool? value) {
  _i4.setProperty(
    this,
    'shadowVisible',
    value ?? _i5.undefined,
  );
}