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:
parent
7fb9a2e31f
commit
995504ca06
Binary file not shown.
Binary file not shown.
@ -1219,6 +1219,14 @@ namespace VEPROMS.CSLA.Library
|
||||
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;
|
||||
public string Menu
|
||||
{
|
||||
@ -1275,14 +1283,7 @@ namespace VEPROMS.CSLA.Library
|
||||
return LazyLoad(ref _RelXLocation, "@RelXLocation");
|
||||
}
|
||||
}
|
||||
private LazyLoad<int?> _CheckOffXtraLines;
|
||||
public int? CheckOffXtraLines
|
||||
{
|
||||
get
|
||||
{
|
||||
return LazyLoad(ref _CheckOffXtraLines, "@CheckOffXtraLines");
|
||||
}
|
||||
}
|
||||
|
||||
private LazyLoad<bool> _DropCheckOff;
|
||||
public bool DropCheckOff
|
||||
{
|
||||
@ -1399,6 +1400,14 @@ namespace VEPROMS.CSLA.Library
|
||||
return LazyLoad(ref _CheckOffWidAdjust, "@CheckOffWidAdjust");
|
||||
}
|
||||
}
|
||||
private LazyLoad<int?> _CheckOffXtraLines;
|
||||
public int? CheckOffXtraLines
|
||||
{
|
||||
get
|
||||
{
|
||||
return LazyLoad(ref _CheckOffXtraLines, "@CheckOffXtraLines");
|
||||
}
|
||||
}
|
||||
private LazyLoad<string> _MenuItem;
|
||||
public string MenuItem
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user