This commit is contained in:
parent
46fff24c89
commit
0cdc0ceb5f
@ -72,8 +72,7 @@ namespace VEPROMS.CSLA.Library
|
|||||||
get
|
get
|
||||||
{
|
{
|
||||||
// TODO: eventually want styles
|
// TODO: eventually want styles
|
||||||
// TODO: Size should be float to support 10.5 etc.
|
if (_WindowsFont == _WindowsFont) _WindowsFont = new Font(Family, (float)Size);
|
||||||
if (_WindowsFont == null) _WindowsFont = new Font(Family, (float)Size);
|
|
||||||
return _WindowsFont;
|
return _WindowsFont;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -2202,6 +2201,15 @@ namespace VEPROMS.CSLA.Library
|
|||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
public StepData this[string type]
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
foreach (StepData stepData in this)
|
||||||
|
if (stepData.Type == type) return stepData;
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
public StepDataList(XmlNodeList xmlNodeList) : base(xmlNodeList) { }
|
public StepDataList(XmlNodeList xmlNodeList) : base(xmlNodeList) { }
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
@ -2310,7 +2318,7 @@ namespace VEPROMS.CSLA.Library
|
|||||||
{
|
{
|
||||||
get
|
get
|
||||||
{
|
{
|
||||||
return LazyLoad(ref _IdentPrint, "TabData/@IdentPrint");
|
return LazyLoad(ref _IdentPrint, "TabData/@Ident");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
private LazyLoad<string> _AltPrintTBIdent;
|
private LazyLoad<string> _AltPrintTBIdent;
|
||||||
@ -2334,7 +2342,23 @@ namespace VEPROMS.CSLA.Library
|
|||||||
{
|
{
|
||||||
get
|
get
|
||||||
{
|
{
|
||||||
return LazyLoad(ref _RNOIdentPrint, "TabData/@RNOIdentPrint");
|
return LazyLoad(ref _RNOIdentPrint, "TabData/@RNOIdent");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
private LazyLoad<string> _Justify;
|
||||||
|
public string Justify
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
return LazyLoad(ref _Justify, "TabData/@Justify");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
private LazyLoad<string> _CheckOff;
|
||||||
|
public string CheckOff
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
return LazyLoad(ref _CheckOff, "TabData/@CheckOff");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
private VE_Font _Font;
|
private VE_Font _Font;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user