Various format improvements

Check off line improvements
BGE_STP: Added ‘CheckOffHeaderInPagelist’ flag to denote that the format supports checkoff headers, but the header is in the pagelist rather than the list of check off headers
This commit is contained in:
Kathy Ruffing 2014-10-16 12:50:23 +00:00
parent 7fb9a2e31f
commit 995504ca06
3 changed files with 17 additions and 8 deletions

Binary file not shown.

Binary file not shown.

View File

@ -1219,6 +1219,14 @@ namespace VEPROMS.CSLA.Library
return _CheckOffHeaderList == null? _CheckOffHeaderList = new CheckOffHeaderList(SelectNodes("CheckOffHeaderList/CheckOffHeader"),MyFormat): _CheckOffHeaderList; return _CheckOffHeaderList == null? _CheckOffHeaderList = new CheckOffHeaderList(SelectNodes("CheckOffHeaderList/CheckOffHeader"),MyFormat): _CheckOffHeaderList;
} }
} }
private LazyLoad<bool> _CheckOffHeaderInPagelist;
public bool CheckOffHeaderInPagelist
{
get
{
return LazyLoad(ref _CheckOffHeaderInPagelist, "@CheckOffHeaderInPagelist");
}
}
private LazyLoad<string> _Menu; private LazyLoad<string> _Menu;
public string Menu public string Menu
{ {
@ -1275,14 +1283,7 @@ namespace VEPROMS.CSLA.Library
return LazyLoad(ref _RelXLocation, "@RelXLocation"); return LazyLoad(ref _RelXLocation, "@RelXLocation");
} }
} }
private LazyLoad<int?> _CheckOffXtraLines;
public int? CheckOffXtraLines
{
get
{
return LazyLoad(ref _CheckOffXtraLines, "@CheckOffXtraLines");
}
}
private LazyLoad<bool> _DropCheckOff; private LazyLoad<bool> _DropCheckOff;
public bool DropCheckOff public bool DropCheckOff
{ {
@ -1399,6 +1400,14 @@ namespace VEPROMS.CSLA.Library
return LazyLoad(ref _CheckOffWidAdjust, "@CheckOffWidAdjust"); return LazyLoad(ref _CheckOffWidAdjust, "@CheckOffWidAdjust");
} }
} }
private LazyLoad<int?> _CheckOffXtraLines;
public int? CheckOffXtraLines
{
get
{
return LazyLoad(ref _CheckOffXtraLines, "@CheckOffXtraLines");
}
}
private LazyLoad<string> _MenuItem; private LazyLoad<string> _MenuItem;
public string MenuItem public string MenuItem
{ {