VC Summer Unit 2 & 3 Single column format

This commit is contained in:
2016-06-14 13:52:50 +00:00
parent 98ef7abb29
commit 4ae5fdf980
6 changed files with 37 additions and 4 deletions

View File

@@ -171,6 +171,7 @@ namespace VEPROMS.CSLA.Library
DSS_PageListAddSectCont = 0x400000000, // for this section, add the top continue message when doing the ATTACHTITLECONT pagelist token (Calvert/Landscape word docs)
DSS_WordContentLandscaped = 0x800000000, // for this section, the word content is landscaped.
DSS_ChklstEditSize = 0x100000000, // Westinghouse checklist - edit window size
DSS_SameXOffSubsections = 0x2000000000, // print subsections at same offset as section & preceeding subsections,start HLS xoff at section text (not number)
};
public enum E_DocStyleUse : uint
{

View File

@@ -3608,6 +3608,14 @@ namespace VEPROMS.CSLA.Library
return LazyLoad(ref _LimitWidToPageWid, "@LimitWidToPageWid");
}
}
private LazyLoad<bool> _CombinedTabIncludeParenTabs;
public bool CombinedTabIncludeParenTabs
{
get
{
return LazyLoad(ref _CombinedTabIncludeParenTabs, "@CombinedTabIncludeParenTabs");
}
}
private VE_Font _ModifiedTextStyle;
public VE_Font ModifiedTextStyle
{
@@ -5220,6 +5228,14 @@ namespace VEPROMS.CSLA.Library
return LazyLoad(ref _NoTabAlign, "TabData/@NoTabAlign");
}
}
private LazyLoad<bool> _IncludeStepNum;
public bool IncludeStepNum
{
get
{
return LazyLoad(ref _IncludeStepNum, "TabData/@IncludeStepNum");
}
}
private LazyLoad<string> _Justify;
public string Justify
{