ProjectOverviewOn
IDEA will record history information for its databases in Project Overview. Make sure that ProjectOverviewOn is called after it was switched off by a macro.
Compatibility
Available as of IDEA version 9.0
Syntax
ProjectOverviewOn
Example
Dim ProtectIP As Object
Sub Main
Set ProtectIP = SmartContext.MacroCommands.ProtectIP
'IDEA will not record history information for its databases in Project Overview
ProtectIP.ProjectOverviewOff
...
...
'IDEA will now record again history information for its databases in Project Overview
ProtextIP.ProjectOverviewOn
'Release objects
Set ProtectIP = Nothing
End Sub