validCycle property

EnumValue validCycle

Gets or sets what kinds of graphs this diagram allows the user to draw. By default this property is Diagram.CycleAll -- all kinds of cycles are permitted. Common values include Diagram.CycleDestinationTree and Diagram.CycleNotDirected.

Implementation

_i3.EnumValue get validCycle => _i4.getProperty(
      this,
      'validCycle',
    );
void validCycle=(EnumValue value)

Implementation

set validCycle(_i3.EnumValue value) {
  _i4.setProperty(
    this,
    'validCycle',
    value,
  );
}