This property specifies whether Search uses the AutoPropLimit property.
Syntax
IBuildCatalog.AutoPropLimitEnabled [=Enabled]
Settings
Enabled
If True, the AutoPropLimit property is enabled.
Example
The following example sets every catalog's AutoPropLimitEnabled property to False (disables the AutoPropLimit property).
Option Explicit
On Error Resume Next
Dim objSearchAdmin, objBuildServer, objCatalogs, objCatalog
Set objSearchAdmin = CreateObject("Search.SearchAdmin.1")
Set objBuildServer = objSearchAdmin.BuildServer
Set objCatalogs = objBuildServer.BuildCatalogs
For Each objCatalog in objCatalogs
objCatalog.AutoPropLimitEnabled = False
Next
'Release objects
Set objCatalogs = Nothing
Set objBuildServer = Nothing
Set objSearchAdmin = Nothing
See Also