Method: IsKindOf for Browser <DataFinder>
- Updated2024-09-12
- 2 minute(s) read
DIAdem NAVIGATOR > Methods > Method: IsKindOf for Browser <DataFinder>
Method: IsKindOf for Browser <DataFinder>
Determines whether the file browser of a DataFinder is open.
bIsKindOf = Object.IsKindOf(Case)
| Object | Browser <DataFinder> Object with this method | ||
| Case | String Specifies the type of the browser.
| ||
| bIsKindOf | Boolean If you select elements, the return value of the IsKindOf method is TRUE, if the file browser of a DataFinder is open, otherwise FALSE. |
The following example displays whether the browser of a DataFinder or of a data store is open:
| VBScript | Python |
Dim oMyBrowser Set oMyBrowser = Navigator.Display.CurrDataProvider.Browser If(oMyBrowser.IsKindOf(eDataFinderBrowser)) Then Call MsgBoxDisp("DataFinder Browser") Else Call MsgBoxDisp("No DataFinder Browser") End If
![]() | Note Replace the object CurrDataProvider used in the example with the properties CurrDataFinder and CurrDataStore from the Display object. Use the CurrDataProvider object if it is not clear which object it is. Use the IsKindOf method to specify the object type. |
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 Data with a Script Using the Navigator Interface | Searching for Data with a Script without Using the Navigator Interface | 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
