Repository.EnforceRENOCompliance: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
Line 6: Line 6:
  {{APIComment|'Declare a new repository connection object.}}
  {{APIComment|'Declare a new repository connection object.}}
   Dim MyRepository As New Repository
   Dim MyRepository As New Repository
 
  {{APIComment|'Set the property.}}
  {{APIComment|'Disable the RENO compliance.}}
   MyRepository.EnforceRENOCompliance = False
   MyRepository.EnforceRENOCompliance = False

Revision as of 17:35, 20 May 2015


If set to true, disallows spaces and special characters in names of models. This will ensure that all models can be used in RENO equations. The default value is True.

Usage Example

 'Declare a new repository connection object. 
 Dim MyRepository As New Repository

 'Disable the RENO compliance. 
 MyRepository.EnforceRENOCompliance = False