ProjectOverviewOff
IDEA will not record history information for its databases in Project Overview.
Compatibility
Available as of IDEA version 9.0
Syntax
ProjectOverviewOff
Remark
It is important to run this command.
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
ProtectIP.ProjectOverviewOn
'Release objects
Set ProtectIP = Nothing
End Sub