Browse our Products

Aspose.Diagram for .NET 19.2 Release Notes

Improvements and Changes

KeySummaryCategory
DIAGRAMNET-50009The heart shape is mixed-up when exporting VSD drawing in PDF file formatEnhancement
DIAGRAMNET-50010VSD to PDF exports multiple zigzag lines with a concurrent point instead of a single curve lineEnhancement
DIAGRAMNET-51257Add support of NUBRS line when exporting a drawingEnhancement
DIAGRAMNET-51611Unable to get Prop.Prompt.Value correctlyEnhancement
DIAGRAMNET-50355Curved lines are exported as straight linesBug
DIAGRAMNET-50702VSDX to PDF export - the curved connectors turn into straightBug
DIAGRAMNET-51348VSDX to PDF - Incorrect rendering of lettersBug
DIAGRAMNET-51399VSD to PNG - the curved line is converted to straight lineBug
DIAGRAMNET-51448VSD to PNG - the ellipse is missing around the word networkBug
DIAGRAMNET-51472VSD to PDF - the curved lines are being exported as straight linesBug
DIAGRAMNET-51507VSDX to PNG - filled oval shapes are missing in the outputBug
DIAGRAMNET-51508VSDX to SVG - filled oval shapes are missing in the outputBug
DIAGRAMNET-51537VSDX to SVG - curved connectors become straight connectors when VSDX is rendered to PDFBug
DIAGRAMNET-51540Shape edges were changed as square after conversionBug
DIAGRAMNET-51577VISIO to SVG - output is not correctBug
DIAGRAMNET-51592Curved lines are changing into straight lines while conversionBug
DIAGRAMNET-51600Straight lines become spikes when saving a diagram as another formatBug
DIAGRAMNET-51604VSDX to PDF conversion error - black ellipsesBug
DIAGRAMNET-51605Update API references and add details about Shape.SetAngle() methodBug
DIAGRAMNET-51610VSDX to SVG - text is not rendering in the correct fontBug

Public API and Backwards Incompatible Changes

The following is a list of any changes made to the public API such as added, renamed, removed or deprecated members as well as any non-backward compatible change made to Aspose.Diagram for .NET. If you have concerns about any change listed, please raise them in the Aspose.Diagram support forum.

Add InheritProps in Shape

Contains the props for the shape inherit by the master shape.

  foreach (Aspose.Diagram.Prop prop in shape.InheritProps)

{

    Console.WriteLine(prop.Name);

    Console.WriteLine(prop.Label.Value);

    Console.WriteLine(prop.Prompt.Value);

    Console.WriteLine(prop.Type.Value.ToString());

    Console.WriteLine(prop.Value.Val);

    Console.WriteLine(prop.Format.Value);

}


 
 English