diff --git a/PROMS/Volian.Print.Library/vlnParagraph.cs b/PROMS/Volian.Print.Library/vlnParagraph.cs index a31405fb..f420be21 100644 --- a/PROMS/Volian.Print.Library/vlnParagraph.cs +++ b/PROMS/Volian.Print.Library/vlnParagraph.cs @@ -1428,6 +1428,15 @@ namespace Volian.Print.Library { Width = _WidthAdjust + ToInt(formatInfo.MyStepSectionLayoutData.WidSTablePrint, maxRNO); } + else if (itemInfo.IsCaution || itemInfo.IsNote) + { + float mycolT = (float)formatInfo.MyStepSectionLayoutData.ColT; + Width = (float)formatInfo.MyStepSectionLayoutData.WidT - 6 - mycolT; + XOffset += mycolT; // adjust caution/note text position + if (PartsLeft != null)// adjust tab position + foreach(vlnPrintObject vpo in PartsLeft) + vpo.XOffset += mycolT; + } else if (itemInfo.IsSection) { Width = _WidthAdjust + ToInt(formatInfo.MyStepSectionLayoutData.WidSTablePrint, maxRNO);