wrappingWidth property
      
      num
      get
      wrappingWidth
      
    
    
Gets or sets the wrapping width.
The default is NaN, meaning to use the width of the diagram's panel's viewport. Must be a value greater than 0.
Implementation
_i2.num get wrappingWidth => _i4.getProperty(
      this,
      'wrappingWidth',
    );
      
      set
      wrappingWidth
      (num value) 
      
    
    
    
Implementation
set wrappingWidth(_i2.num value) {
  _i4.setProperty(
    this,
    'wrappingWidth',
    value,
  );
}