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