This commit is contained in:
2012-04-12 16:33:18 +00:00
parent d445039c7f
commit 00dc6448c2
4 changed files with 96 additions and 48 deletions

View File

@@ -255,6 +255,23 @@ namespace VEPROMS.CSLA.Library
}
public Section MySection
{ get { return _Section; } }
[Category("Format")]
[DisplayName("Keep Word Document Margins")]
[RefreshProperties(RefreshProperties.All)]
[Description("Section WordMargin")]
public string Section_WordMargin
{
get
{
string tmp = _Xp["Section", "WordMargin"];
return tmp == null || tmp == "" ? "N" : tmp;
}
set
{
_Xp["Section", "WordMargin"] = value;
OnPropertyChanged("Section_WordMargin");
}
}
#endregion
#region ToString
public override string ToString()