Log Symbols being used in MSWord Documents

Improve Performance by not loading all ROImages into memory
This commit is contained in:
Rich
2012-04-11 15:45:46 +00:00
parent 7eac3bab45
commit 0b0e62a2d7
2 changed files with 8 additions and 2 deletions

View File

@@ -140,7 +140,8 @@ namespace VEPROMS.CSLA.Library
get
{
CanReadProperty("MyROFst", true);
if (_MyROFst == null && _ROFstID != 0) _MyROFst = ROFstInfo.Get(_ROFstID);
//if (_MyROFst == null && _ROFstID != 0) _MyROFst = ROFstInfo.Get(_ROFstID);
if (_MyROFst == null && _ROFstID != 0) _MyROFst = ROFstInfo.GetJustROFst(_ROFstID);// Improve performance by not loading all ROImages
return _MyROFst;
}
}