Hi,
I’m getting into printing and using following code (nothing Special), the bottom border of the bottom-most node is cut off (printed to XPS and PDF with the same result).
Any idea?
private void OnToolStripButtonPrintClick(object sender, EventArgs e)
{
//this.diagram.PrintManager.Parts = this.diagram.SelectedParts;
var printDialog = new PrintDialog();
var dialogResult = printDialog.ShowDialog();
if (dialogResult.Value)
{
this.diagram.PrintManager.Print(printDialog);
}
}