This commit is contained in:
2009-11-03 16:32:28 +00:00
parent afc16fb9f9
commit 391cbaea39
3 changed files with 424 additions and 5 deletions

View File

@@ -87,6 +87,10 @@ namespace VEPROMS.CSLA.Library
}
return _WindowsFont;
}
set
{
_WindowsFont = value;
}
}
[Description("Font Family")]
public string Family
@@ -2163,7 +2167,7 @@ namespace VEPROMS.CSLA.Library
public int? MaxRNO
{
get
{
{
return LazyLoad(ref _MaxRNO, "@MaxRNO");
}
}
@@ -3990,6 +3994,14 @@ namespace VEPROMS.CSLA.Library
return LazyLoad(ref _CheckOff, "TabData/@CheckOff");
}
}
private LazyLoad<bool> _UsePreviousStyle;
public bool UsePreviousStyle
{
get
{
return LazyLoad(ref _UsePreviousStyle, "TabData/@UsePreviousStyle");
}
}
private VE_Font _Font;
public VE_Font Font
{