When opening an MSWord Section, if the Document Zoom is less than 40% change it to 100%
This commit is contained in:
parent
4dc6ea49de
commit
99961c7ddf
@ -287,6 +287,8 @@ namespace Volian.Controls.Library
|
|||||||
doc.Application.Selection.ParagraphFormat.LineSpacing = 72 / 6; // for 6 LPI
|
doc.Application.Selection.ParagraphFormat.LineSpacing = 72 / 6; // for 6 LPI
|
||||||
MSWordToPDF.AdjustMargins(ds, doc, false);
|
MSWordToPDF.AdjustMargins(ds, doc, false);
|
||||||
}
|
}
|
||||||
|
if (doc.ActiveWindow.ActivePane.View.Zoom.Percentage < 40)
|
||||||
|
doc.ActiveWindow.ActivePane.View.Zoom.Percentage = 100;
|
||||||
}
|
}
|
||||||
public void FindSearchString()
|
public void FindSearchString()
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user