 | CMSTKFindSTK2 Method |
Find index of STK from a string of group names and X/Y channels
Namespace:
Geosoft.Desktop.GXNetX
Assembly:
geosoft.desktop.gxnetx (in geosoft.desktop.gxnetx.dll) Version: 2024.2.0.25
Syntaxpublic void FindSTK2(
string str_val,
ref int index,
CVV vv_rtd
)
public void FindSTK2(
string str_val,
ref int index,
CVV vv_rtd
)
Public Sub FindSTK2 (
str_val As String,
ByRef index As Integer,
vv_rtd As CVV
)
Public Sub FindSTK2 (
str_val As String,
ByRef index As Integer,
vv_rtd As CVV
)
public:
void FindSTK2(
String^ str_val,
int% index,
CVV^ vv_rtd
)
public:
void FindSTK2(
String^ str_val,
int% index,
CVV^ vv_rtd
)
member FindSTK2 :
str_val : string *
index : int byref *
vv_rtd : CVV -> unit
member FindSTK2 :
str_val : string *
index : int byref *
vv_rtd : CVV -> unit
Parameters
- str_val
- Type: SystemString
Input string (see notes above). Will be modified on return - index
- Type: SystemInt32
Index to the STK found, Must be greater than 0 if found, -1 if not found - vv_rtd
- Type: GeoEngine.Core.GXNetXCVV
Returned VV with names of Group, X channel and Y channel VV type must be of STRING
Remarks
Format of the input string:
Map group name + " ( " + X channel name + " , " + Y channel name + " )"
for example, string "DATA ( DIST , MAG )" indicates a map group name of DATA,
X channel name of DIST and Y channel name of MAG.
See Also