WCNCKL: added length of smart template HLS (for wrapping)

WCNCKL: Set length of smart template HLS (for wrapping)
Moved ‘SplitText’ from vlnSvgPageHelper so that it can be accessible from DisplayText (Volian.Controls.Library) and VlnSvgPageHelper (print)
Calvert: use item’s format to determine if change id tab should be visible rather than top folder (top folder was used when user was prompted to enter change id for session).
WCNCKL: use ‘SplitText’ to handle split/wrap of HLS checklist text
This commit is contained in:
2014-09-09 13:10:34 +00:00
parent d6aae18a46
commit aa264a4e5d
8 changed files with 155 additions and 10 deletions

View File

@@ -3886,6 +3886,7 @@ namespace VEPROMS.CSLA.Library
return LazyLoad(ref _UseSmartTemplate, "@UseSmartTemplate");
}
}
private LazyLoad<bool> _UseOldTemplate;
public bool UseOldTemplate
{
@@ -4708,6 +4709,14 @@ namespace VEPROMS.CSLA.Library
return LazyLoad(ref _PosAdjust, "StepPrintData/@PosAdjust");
}
}
private LazyLoad<int?> _HLSLength;
public int? HLSLength
{
get
{
return LazyLoad(ref _HLSLength, "StepPrintData/@HLSLength");
}
}
private LazyLoad<string> _Justify;
public string Justify
{