NumberKeepLocalCopies
Use this property to allow additional local copies of the ASE pool for later reuse.
The default value is 1. If the value is not modified, the system deletes any additional local pool copies when the application that created the copy is closed.
Note: The property is saved within the project once the script is executed. To change the
property, modify and rerun the script.
Syntax
NumberKeepLocalCopies as Long
Sample Code
The following sample code sets the NumberKeepLocalCopies property to 10.
Dim theDocClass as SCBCdrDocClass
Dim theSupplierSettings as CDRADSLib.SCBCdrSupExSettings
Dim theAnalysisSettings as ISCBCdrAnalysisSettings
Dim theObject as Object
Set theDocClass=Project.AllClasses.ItemByName("Invoices")
theDocClass.GetFieldAnalysisSettings "VendorASSA",Project.DefaultLanguage,theAnalysisSettings
Set theObject = theAnalysisSettings
Set theSupplierSettings = theObject
theSupplierSettings.NumberKeepLocalCopies = 10