Click or drag to resize

CSTRiStrMin Method

Remove spaces and tabs and return length

Namespace:  GeoEngine.Core.GXNetX
Assembly:  geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2024.2.0.25
Syntax
public static int iStrMin(
	CGXNETCore gxNetShared,
	ref string str_val
)

public static int iStrMin(
	CGXNETCore gxNetShared,
	ref string str_val
)

Parameters

gxNetShared
Type: GeoEngine.Core.GXNetXCGXNETCore
A shared CGXNETCore
str_val
Type: SystemString
String to find the min length of

Return Value

Type: Int32
String length.
Remarks
String may be modified. This function should not be used to determine if a file name string is defined, because a valid file name can contain spaces, and once "tested" the name will be altered. Instead, use iStrMin2_STR, or use iFileExist_SYS to see if the file actually exists.
See Also