Method: Add for Columns
- Updated2024-09-12
- 3 minute(s) read
DIAdem NAVIGATOR > Methods > Method: Add for Columns
Method: Add for Columns
Adds a column with properties to the search results list of a DataFinder or a data store.
Set oColumn = Object.Add(Type, Property, [DataType])
| Object | Columns Object with this method | |||||||||||||||
| Type | String Specifies the property type you add.
Refer to Configure Search Results List (Data Stores) and Configure Search Results List (DataFinder) for further information on the properties which you can display in the search results list. | |||||||||||||||
| Property | String Specifies the properties to be displayed. | |||||||||||||||
| [DataType] | Specifies the data type of the column. Enumeration with the following selection terms:
| |||||||||||||||
| oColumn | Column Returned object |
![]() | Note If you change the Browse Settings of a data store, the valid values change for Type andProperty. |
The following example adds a new column that contains the channel group property Description to the right of the search results of a DataFinder:
| VBScript | Python |
Dim oMyResultsList Set oMyResultsList = Navigator.Display.CurrDataFinder.ResultsList Call oMyResultsList.Columns.Add(eSearchChannelGroup,"Description")
The following example adds a new column with the measurement property ID to the right of the search results of a data store:
| VBScript | Python |
Dim oMyResultsList Set oMyResultsList = Navigator.Display.CurrDataStore.ResultsList Call oMyResultsList.Columns.Add("Measurement","ID")
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
