F2024-008 - Updated transition definitions to title case section numbers, section titles, and procedure titles. Also surround section titles with parenthesis.
This commit is contained in:
@@ -7103,6 +7103,7 @@ namespace VEPROMS.CSLA.Library
|
||||
return LazyLoad(ref _Cap1stCharTrans, "@Cap1stCharTrans");
|
||||
}
|
||||
}
|
||||
// Title Case section title
|
||||
private LazyLoad<bool> _Cap1stCharTransSection;
|
||||
public bool Cap1stCharTransSection
|
||||
{
|
||||
@@ -7111,6 +7112,24 @@ namespace VEPROMS.CSLA.Library
|
||||
return LazyLoad(ref _Cap1stCharTransSection, "@Cap1stCharTransSection");
|
||||
}
|
||||
}
|
||||
// Title Case section number
|
||||
private LazyLoad<bool> _Cap1stCharTransSectionNumber;
|
||||
public bool Cap1stCharTransSectionNumber
|
||||
{
|
||||
get
|
||||
{
|
||||
return LazyLoad(ref _Cap1stCharTransSectionNumber, "@Cap1stCharTransSectionNumber");
|
||||
}
|
||||
}
|
||||
// Parens around section title
|
||||
private LazyLoad<bool> _ParensAroundSectionTitle;
|
||||
public bool ParensAroundSectionTitle
|
||||
{
|
||||
get
|
||||
{
|
||||
return LazyLoad(ref _ParensAroundSectionTitle, "@ParensAroundSectionTitle");
|
||||
}
|
||||
}
|
||||
private LazyLoad<bool> _UseTransitionModifier;
|
||||
public bool UseTransitionModifier
|
||||
{
|
||||
|
Reference in New Issue
Block a user