Flag to reset the docstyle when using UseOnFist and separate pagination, field to specify continue text to append to a continued section title, flag to print an end message on each sub-section

Setting variables to control indenting and underlining on the Auto Table of Contents
This commit is contained in:
2014-10-07 19:35:56 +00:00
parent eeb8b9f452
commit 3162883a66
2 changed files with 65 additions and 0 deletions

View File

@@ -3632,6 +3632,22 @@ namespace VEPROMS.CSLA.Library
return LazyLoad(ref _TofCNumLevels, "@TofCNumLevels");
}
}
private LazyLoad<int?> _TofCStartIndentAfterLevel;
public int? TofCStartIndentAfterLevel
{
get
{
return LazyLoad(ref _TofCStartIndentAfterLevel, "@TofCStartIndentAfterLevel");
}
}
private LazyLoad<bool> _TofCUnderlineFirstLevelTitle;
public bool TofCUnderlineFirstLevelTitle
{
get
{
return LazyLoad(ref _TofCUnderlineFirstLevelTitle, "@TofCUnderlineFirstLevelTitle");
}
}
private VE_Font _Font;
public VE_Font Font
{