When opening an MSWord Section, if the Document Zoom is less than 40% change it to 100%

This commit is contained in:
Rich 2013-12-04 18:44:59 +00:00
parent 4dc6ea49de
commit 99961c7ddf

View File

@ -287,6 +287,8 @@ namespace Volian.Controls.Library
doc.Application.Selection.ParagraphFormat.LineSpacing = 72 / 6; // for 6 LPI
MSWordToPDF.AdjustMargins(ds, doc, false);
}
if (doc.ActiveWindow.ActivePane.View.Zoom.Percentage < 40)
doc.ActiveWindow.ActivePane.View.Zoom.Percentage = 100;
}
public void FindSearchString()
{