DIAdem Help

Object: IndexerSchedule

  • Updated2024-09-12
  • 2 minute(s) read

Object: IndexerSchedule

The IndexerSchedule object provides the settings for the indexer schedule in a DataFinder configuration.

The following example configures the indexer to index the search area every Monday at 9 o'clock and then displays these values:

VBScriptPython

 

Dim oMyDataFinderSettings, oMyIndexerSchedule
Set oMyDataFinderSettings = Navigator.ConnectDataFinder("My DataFinder").GetSettings()
Set oMyIndexerSchedule = oMyDataFinderSettings.IndexerSchedule
oMyIndexerSchedule.Interval = eReindexWeekly
oMyIndexerSchedule.StartTime = CreateTime(0,0,0,9,0,0,0,0,0)
oMyIndexerSchedule.Weekday = eReindexOnMondays
Call MsgBoxDisp("Interval: " & oMyIndexerSchedule.Interval & vbCrLf & "Weekday: " & oMyIndexerSchedule.Weekday)

Properties

Interval | StartTime | Weekday