Object: Navigator
- Updated2024-09-12
- 2 minute(s) read
Objects > Object: Navigator
Object: Navigator
The Navigator object enables access to the interface and the functions of DIAdem NAVIGATOR. Use the Navigator object to open data stores and DataFinders. You can search for properties of files, channel groups, and channels in DataFinders and search for properties of tests, subtests, measurements, and measurement quantities in data stores. You can display the search results and load the results directly into the Data Portal.
The Navigator object is available as a global object in scripts and in dialog boxes. Do not create an object or a variable with the name Navigator, because that overwrites the Navigator object.
Only read access.
The following example executes an extended search and loads the search results into the Data Portal:
| VBScript | Python |
Dim oMyCurrDataProvider, oMyQueryForm, oMyConditions, oMyResults Set oMyCurrDataProvider = Navigator.Display.CurrDataFinder Call Data.Root.Clear() Set oMyQueryForm = oMyCurrDataProvider.QueryForm Call oMyQueryForm.Clear oMyQueryForm.Mode = eAdvancedQueryForm oMyQueryForm.ReturnType = eSearchChannel Set oMyConditions = oMyQueryForm.Conditions Call oMyConditions.Add(eSearchFile,"fileName","=","TR_M17_QT_*") Call oMyConditions.Add(eSearchChannelGroup,"Test_Status","=","fail") Call oMyConditions.Add(eSearchChannel,"maximum",">","45") Call oMyConditions.Add(eSearchChannel,"minimum","<",23) Call oMyConditions.Add(eSearchChannel,"Limit_High","=",50) Call oMyConditions.Add(eSearchChannel,"unit_string","=","°C") Call oMyQueryForm.Search() Set oMyResults = oMyCurrDataProvider.ResultsList.ResultsElements Call Navigator.LoadData(oMyResults)
Methods
ConnectDataFinder | ConnectDataFinderByParameter | ConnectDataStore | ConnectDataStoreByParameter | DisplayIsActive | LoadChannelsByName | LoadData | LoadProperty
See Also
Procedures
Configuring the Search Results | Defining Search Areas | Executing a Search with OR Operations | Executing a Text Search | Indexing Search Areas | Optimizing Custom Properties | Saving and Loading a Search Query | Searching for Data on a Different Computer in the Network | Searching for Multiple Properties | Sorting Search Results before Executing a Search
Examples
Brake Tests for Trucks | Checking DataPlugins for Timeout | Combining DataFinder Search Results | Context Menu for the Search Results of the DataFinder | Creating ATFX Files from the Context Menu of an ASAM Data Store | Customized User Interface | Evaluation Wizard for the Search Results of the DataFinder | Filtering Data with a Dialog Box | Filtering Data without a Dialog Box | Search and Evaluation Functions in User Dialog Boxes | Searching for and Evaluating Channels | Searching for Channels in the NAVIGATOR | Searching for Data Sets Marked "Failed" in Data Stores | Searching for Data Sets Marked "Failed" | Searching for Properties and Evaluating the Associated Channels | Varying Browse Settings of a Data Store