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