This commit is contained in:
@@ -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()
|
||||
|
Reference in New Issue
Block a user