This commit is contained in:
Kathy Ruffing 2012-03-30 10:56:29 +00:00
parent 2d507b7304
commit a8a3453c84

View File

@ -159,6 +159,11 @@ namespace VEPROMS.CSLA.Library
{
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
#region FormatData
@ -4242,8 +4247,8 @@ namespace VEPROMS.CSLA.Library
: base(xmlNode)
{
}
private LazyLoad<int?> _PosAdjust;
public int? PosAdjust
private LazyLoad<float?> _PosAdjust;
public float? PosAdjust
{
get
{