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:
		| @@ -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(); | ||||
|   | ||||
		Reference in New Issue
	
	Block a user