This commit is contained in:
2013-02-20 11:42:32 +00:00
parent 68a5f7171f
commit 4c673f0ea3
5 changed files with 95 additions and 6 deletions

View File

@@ -344,6 +344,32 @@ namespace VEPROMS.CSLA.Library
}
}
#endregion
#region MSWordXAdj
private LazyLoad<float?> _MSWordXAdj;
[Category("Location")]
[DisplayName("MSWord X Adjustment")]
[Description("X Placement of PDF during Print")]
public float? MSWordXAdj
{
get
{
return LazyLoad(ref _MSWordXAdj, "@MSWordXAdj");
}
}
#endregion
#region MSWordYAdj
private LazyLoad<float?> _MSWordYAdj;
[Category("Location")]
[DisplayName("MSWord Y Adjustment")]
[Description("Y Placement of PDF during Print")]
public float? MSWordYAdj
{
get
{
return LazyLoad(ref _MSWordYAdj, "@MSWordYAdj");
}
}
#endregion
#region SectionMacro
private LazyLoad<string> _SectionMacro;
[Category("Extras")]