This commit is contained in:
Kathy Ruffing 2013-02-01 14:58:37 +00:00
parent 3679bcbae2
commit 42c3ba8dd5
2 changed files with 15 additions and 2 deletions

View File

@ -332,6 +332,19 @@ namespace VEPROMS.CSLA.Library
}
}
#endregion
#region SectionMacro
private LazyLoad<string> _SectionMacro;
[Category("Extras")]
[DisplayName("Section Macro")]
[Description("Section Macro Prints With Title")]
public string SectionMacro
{
get
{
return LazyLoad(ref _SectionMacro, "@SectionMacro");
}
}
#endregion
}
#endregion
#region ContinueAll

View File

@ -3324,8 +3324,8 @@ namespace VEPROMS.CSLA.Library
return LazyLoad(ref _TofCPageNumPos, "@TofCPageNumPos");
}
}
private LazyLoad<int?> _TofCSpaceChar;
public int? TofCSpaceChar
private LazyLoad<string> _TofCSpaceChar;
public string TofCSpaceChar
{
get
{