Added SameRowAsParentMultiLines for Comanche Peak
This commit is contained in:
parent
b427d24b63
commit
97225f61b8
@ -3797,6 +3797,15 @@ namespace VEPROMS.CSLA.Library
|
|||||||
return LazyLoad(ref _TofCUnderlineFirstLevelTitle, "@TofCUnderlineFirstLevelTitle");
|
return LazyLoad(ref _TofCUnderlineFirstLevelTitle, "@TofCUnderlineFirstLevelTitle");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
private LazyLoad<string> _TofCPageNumAlign;
|
||||||
|
public string TofCPageNumAlign
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
string tocPgNumAlgn = LazyLoad(ref _TofCPageNumAlign, "@TofCPageNumAlign");
|
||||||
|
return (tocPgNumAlgn == null || tocPgNumAlgn == "") ? "Left" : tocPgNumAlgn;
|
||||||
|
}
|
||||||
|
}
|
||||||
private VE_Font _Font;
|
private VE_Font _Font;
|
||||||
public VE_Font Font
|
public VE_Font Font
|
||||||
{
|
{
|
||||||
@ -4492,6 +4501,14 @@ namespace VEPROMS.CSLA.Library
|
|||||||
return LazyLoad(ref _SameRowAsParent, "@SameRowAsParent");
|
return LazyLoad(ref _SameRowAsParent, "@SameRowAsParent");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
private LazyLoad<bool> _SameRowAsParentMultiLines;
|
||||||
|
public bool SameRowAsParentMultiLines
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
return LazyLoad(ref _SameRowAsParentMultiLines, "@SameRowAsParentMultiLines");
|
||||||
|
}
|
||||||
|
}
|
||||||
private LazyLoad<bool> _CheckOffSameAsParent;
|
private LazyLoad<bool> _CheckOffSameAsParent;
|
||||||
public bool CheckOffSameAsParent
|
public bool CheckOffSameAsParent
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user