DIAdem Help

Method: Item for Columns

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

Method: Item for Columns

Uses the index to access a column of the search results, in a DataFinder or a data store.

Set oColumn = Object.Item(Index)
ObjectColumns
Object with this method
IndexLongInteger
Specifies the index of the column with properties.
oColumnColumn
Returned object
Note  You can always omit the Item method because it is the standard element of the collection.

The following example shows the property that the DataFinder displays in the first column of the search results list:

VBScriptPython

 

Dim oMyResultsList
Set oMyResultsList = Navigator.Display.CurrDataFinder.ResultsList
Call MsgBoxDisp (oMyResultsList.Columns.Item(1).Property)