Add new macro settings to allow for a different checkoff macro when a step element is in single column mode

Logic to support the new macro settings which allows for a different checkoff macro and position when a step element is in single column mode
This commit is contained in:
2014-05-27 16:51:23 +00:00
parent 691f99e291
commit 6d0a14c364
2 changed files with 37 additions and 1 deletions

View File

@@ -4947,6 +4947,31 @@ namespace VEPROMS.CSLA.Library
return LazyLoad(ref _MacroDef, "@Macro");
}
}
private LazyLoad<string> _SingleColMacroDef;
public string SingleColMacroDef
{
get
{
if (_Inherited == null) SetupStepInheritance();
return LazyLoad(ref _MacroDef, "@SingleColMacro");
}
}
private LazyLoad<float?> _MacroXOffSet;
public float? MacroXOffSet
{
get
{
return LazyLoad(ref _MacroXOffSet, "@MacroXOffSet");
}
}
private LazyLoad<float?> _SingleColWidthAdjust;
public float? SingleColWidthAdjust
{
get
{
return LazyLoad(ref _SingleColWidthAdjust, "@SingleColWidthAdjust");
}
}
private LazyLoad<bool> _LocWithXOff;
public bool? LocWithXOff
{