Click or drag to resize
CSYSIiGlobal Method (CGXNETCore, String, String, Int32)
Get a global parameter setting.

Available since Oasis montaj version: 6.0.1
License: Available to anyone.  

Namespace: GeoEngine.Core.GXNetX
Assembly: geoengine.core.gxnetx (in geoengine.core.gxnetx.dll)
Notes
The returned string will be empty if the parameter is not found. Parameters are derived from GEOSOFT.INI. This is a standard Windows style INI file that contains [GROUPS], PARAMETERS and SETTINGS as follows [GROUP1] PARAM1=setting1 PARAM2 setting2 PARAM3 "setting3 is text" To retrieve an entry, specify the group.parameter. For example, iGlobal_SYS("GROUP1.PARAM3",sSetting) will retrieve the string "setting is text". The double quotes will not appear in the setting.
Syntax
public static int IiGlobal(
	CGXNETCore gxNetShared,
	string parm,
	ref string setting,
	int size
)

Parameters

gxNetShared
Type: GeoEngine.Core.GXNetXCGXNETCore
A shared CGXNETCore
parm
Type: SystemString
Name of the Parameter
setting
Type: SystemString
Setting returned
size
Type: SystemInt32
Size of the buffer

Return Value

Type: Int32
0 if parameter found. 1 if parameter not found or not set.
See Also