This commit is contained in:
parent
bd6fbd70c0
commit
bbb8a2a09c
@ -3458,6 +3458,7 @@ namespace VEPROMS.CSLA.Library
|
|||||||
return LazyLoad(ref _VertPos, "@VertPos");
|
return LazyLoad(ref _VertPos, "@VertPos");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private LazyLoad<bool> _DoubleSpace;
|
private LazyLoad<bool> _DoubleSpace;
|
||||||
public bool DoubleSpace
|
public bool DoubleSpace
|
||||||
{
|
{
|
||||||
@ -4155,14 +4156,6 @@ namespace VEPROMS.CSLA.Library
|
|||||||
return LazyLoad(ref _BackColor, "StepLayoutData/@BackColor");
|
return LazyLoad(ref _BackColor, "StepLayoutData/@BackColor");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
//private LazyLoad<int?> _STExtralines; Replaced with STExtraSpace
|
|
||||||
//public int? STExtralines
|
|
||||||
//{
|
|
||||||
// get
|
|
||||||
// {
|
|
||||||
// return LazyLoad(ref _STExtralines, "StepLayoutData/@STExtralines");
|
|
||||||
// }
|
|
||||||
//}
|
|
||||||
private LazyLoad<int?> _STExtraSpace;
|
private LazyLoad<int?> _STExtraSpace;
|
||||||
public int? STExtraSpace
|
public int? STExtraSpace
|
||||||
{
|
{
|
||||||
@ -4187,6 +4180,15 @@ namespace VEPROMS.CSLA.Library
|
|||||||
return LazyLoad(ref _EveryNLines, "StepLayoutData/@EveryNLines");
|
return LazyLoad(ref _EveryNLines, "StepLayoutData/@EveryNLines");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
private LazyLoad<bool> _AlignWithParentTab;
|
||||||
|
public bool AlignWithParentTab
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
return LazyLoad(ref _AlignWithParentTab, "StepLayoutData/@AlignWithParentTab");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
#region StepEditData
|
#region StepEditData
|
||||||
@ -4255,6 +4257,14 @@ namespace VEPROMS.CSLA.Library
|
|||||||
return LazyLoad(ref _PosAdjust, "StepPrintData/@PosAdjust");
|
return LazyLoad(ref _PosAdjust, "StepPrintData/@PosAdjust");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
private LazyLoad<string> _Justify;
|
||||||
|
public string Justify
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
return LazyLoad(ref _Justify, "StepPrintData/@Justify");
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
#region TypeMenu
|
#region TypeMenu
|
||||||
|
Loading…
x
Reference in New Issue
Block a user