F2022-121 added flag SpecialStepsFoldoutKeepWhiteSpace to prevent the compression of a SpecialStepsFoldout section

F2022-121 added logic to support SpecialStepsFoldoutKeepWhiteSpace to prevent the compression of a SpecialStepsFoldout section
This commit is contained in:
2022-12-12 18:55:05 +00:00
parent f07fedd3ee
commit 78937b719a
3 changed files with 25 additions and 2 deletions

View File

@@ -339,6 +339,16 @@ namespace VEPROMS.CSLA.Library
}
}
[Category("Miscellaneous")]
[Description("Section Special Steps Foldout with white space")]
private LazyLoad<bool> _SpecialStepsFoldoutKeepWhiteSpace;
public bool SpecialStepsFoldoutKeepWhiteSpace
{
get
{
return LazyLoad(ref _SpecialStepsFoldoutKeepWhiteSpace, "@SpecialStepsFoldoutKeepWhiteSpace");
}
}
[Category("Miscellaneous")]
[Description("Section Extra Line Header")]
private LazyLoad<bool> _ExtraLineHeader;
public bool ExtraLineHeader

View File

@@ -1332,6 +1332,14 @@ namespace VEPROMS.CSLA.Library
return LazyLoad(ref _SpecialStepsFoldout, "@SpecialStepsFoldout");
}
}
private LazyLoad<bool> _SpecialStepsFoldoutKeepWhiteSpace;
public bool SpecialStepsFoldoutKeepWhiteSpace
{
get
{
return LazyLoad(ref _SpecialStepsFoldoutKeepWhiteSpace, "@SpecialStepsFoldoutKeepWhiteSpace");
}
}
private LazyLoad<bool> _AllowDuplex;
public bool AllowDuplex
{