Opens the Data Browser to allow the user to select a list of tag names.
Namespace: Ico.GwxAssembly: GwxConfigCore (in GwxConfigCore.dll) Version: 10.97.212.0 (10.97.212.00)
Syntax
C# |
---|
public string[] OpenDataBrowserMultiselect(
string[] tagNames,
bool requireTagTokens
) |
Visual Basic |
---|
Public Function OpenDataBrowserMultiselect ( _
tagNames As String(), _
requireTagTokens As Boolean _
) As String() |
JScript |
---|
public function OpenDataBrowserMultiselect(
tagNames : String[],
requireTagTokens : boolean
) : String[] |
Parameters
- tagNames
- Type: array<System..::..String>[]()[][]
An initial list of tag names to send to the Data Browser.
- requireTagTokens
- Type: System..::..Boolean
True if a selected tags should be enclosed in tag tokens ( {{ and }} ).
Return Value
The new tag names selected by the user. If the user did not select any new tags (such as when the Cancel button
is clicked), this function returns the original
tagNames. So, you can
compare the
tagNames parameter instance to the return value of this function to determine if the
user chose a new tag.
See Also