F2024-043 Corrected box around second level continuous action sub-step.

This commit is contained in:
2024-03-13 16:32:27 -04:00
parent 490c61c225
commit d9018c44e7
4 changed files with 15 additions and 1 deletions

View File

@@ -6635,6 +6635,17 @@ namespace VEPROMS.CSLA.Library
return LazyLoad(ref _UseEntireSectionNum, "TabData/@UseEntireSectionNum");
}
}
// this will remove white space before/after the tab value
// put in for Vogtal Units 3 & 4 formats for continuous action sub-steps
// they have tab value within parenthesis and for a single digit/letter we don't want the white steps before or after it
private LazyLoad<bool> _TrimSeqTabValue;
public bool TrimSeqTabValue
{
get
{
return LazyLoad(ref _TrimSeqTabValue, "TabData/@TrimSeqTabValue");
}
}
}
#endregion