This commit is contained in:
parent
2d507b7304
commit
a8a3453c84
@ -159,6 +159,11 @@ namespace VEPROMS.CSLA.Library
|
|||||||
{
|
{
|
||||||
return string.Format("{0}, {1} pt, {2}", Family, Size, Style);
|
return string.Format("{0}, {1} pt, {2}", Family, Size, Style);
|
||||||
}
|
}
|
||||||
|
public bool FontIsProportional()
|
||||||
|
{
|
||||||
|
if (Family.Contains("Arial") || Family.Contains("Times New Roman")) return true;
|
||||||
|
return false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
#region FormatData
|
#region FormatData
|
||||||
@ -4242,8 +4247,8 @@ namespace VEPROMS.CSLA.Library
|
|||||||
: base(xmlNode)
|
: base(xmlNode)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
private LazyLoad<int?> _PosAdjust;
|
private LazyLoad<float?> _PosAdjust;
|
||||||
public int? PosAdjust
|
public float? PosAdjust
|
||||||
{
|
{
|
||||||
get
|
get
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user