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