New Enhanced Document Properties

This commit is contained in:
Rich
2015-10-27 13:28:47 +00:00
parent d720159113
commit a87c8facdb
4 changed files with 293 additions and 55 deletions

View File

@@ -840,7 +840,22 @@ namespace VEPROMS.CSLA.Library
}
}
#endregion
#region EnhancedDocuments
// Enhanced Documents
private EnhancedDocuments _MyEnhancedDocuments = null;
public EnhancedDocuments MyEnhancedDocuments
{
get
{
if (_MyEnhancedDocuments == null)
{
_MyEnhancedDocuments = EnhancedDocuments.Load(_Xp);
}
return _MyEnhancedDocuments;
}
set { _MyEnhancedDocuments = value; }
}
#endregion
#region IItemConfig Members
[Category("Master/Slave Settings")]