Added flag CompressPropSubSup for compressing proportional fonts sub & superscript (used by Calvert)

Use CompressPropSubSup
Use  CompressPropSubSup
This commit is contained in:
2014-06-27 12:16:10 +00:00
parent 4b476ebd48
commit 9fb17c103c
6 changed files with 44 additions and 5 deletions

View File

@@ -214,7 +214,7 @@ namespace VEPROMS.CSLA.Library
while (indx < Templates.Count)
{
// level of 0 starts a new group.
if (Templates[indx].level == 0) TopTemplateTypes[Templates[indx + 1].type] = indx+1;
if (Templates[indx].level == 0) TopTemplateTypes[Templates[indx + 1].type] = indx + 1;
indx++;
}
}
@@ -2139,6 +2139,14 @@ namespace VEPROMS.CSLA.Library
return LazyLoad(ref _CompressHPSuper, "@CompressHPSuper");
}
}
private LazyLoad<bool> _CompressPropSubSup;
public bool CompressPropSubSup
{
get
{
return LazyLoad(ref _CompressPropSubSup, "@CompressPropSubSup");
}
}
private LazyLoad<bool> _UndSpecialStepsFoldout;
public bool UndSpecialStepsFoldout
{