B2019-094 – needed to account for table position adjustments when printing the checkoff macro of the following step. For South Texas FSG20 Addendum 5 step5

This commit is contained in:
John Jenko 2019-07-16 17:12:34 +00:00
parent b45332c5ba
commit b0dc9b83d8

View File

@ -38,9 +38,10 @@ namespace Volian.Print.Library
if (MyPageHelper != null && MyPageHelper.MySvg != null && MacroDef != null)
{
// C2018-004 create meta file for baseline compares
Volian.Base.Library.BaselineMetaFile.WriteLine("MC X={0} Y={1} {2}", XOffset - MyPageHelper.MySvg.LeftMargin, yLocation, MacroDef);
Volian.Base.Library.BaselineMetaFile.WriteLine("MC X={0} Y={1} {2}", XOffset - MyPageHelper.MySvg.LeftMargin, yLocation + MyPageHelper.TableAdjustment, MacroDef);
// PageList items are located with respect to the left margin, macros are not.
MyPageHelper.MySvg.DrawMacro(MacroDef, XOffset - MyPageHelper.MySvg.LeftMargin, yLocation, cb);
// B2019-094 - needed to account for TableAdjustment - checkoff in South Texas FSG20 Addendum 5 step 5
MyPageHelper.MySvg.DrawMacro(MacroDef, XOffset - MyPageHelper.MySvg.LeftMargin, yLocation + MyPageHelper.TableAdjustment, cb);
}
PrintOverride.SvgColor = push;
if (textLayer != null) cb.EndLayer();