Added new SlashReplace format variable to control how Slashes are treated when the procedure number is converted to a pdf name.

Changed formating of Cautions (Not Bold and Heading removed underline)
Corrected RO_Lookup logic for page Header.
This commit is contained in:
Rich
2013-02-06 16:36:34 +00:00
parent a2d30b72e1
commit 9e35e1ec4b
3 changed files with 12 additions and 1 deletions

View File

@@ -635,6 +635,14 @@ namespace VEPROMS.CSLA.Library
return LazyLoad(ref _SectionLevelFoldouts, "@SectionLevelFoldouts");
}
}
private LazyLoad<string> _SlashReplace;
public string SlashReplace
{
get
{
return LazyLoad(ref _SlashReplace, "@SlashReplace");
}
}
private LazyLoad<bool> _RevDateWithForwardSlash;
public bool RevDateWithForwardSlash
{