 | 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
Syntaxpublic static int iStrMin(
CGXNETCore gxNetShared,
ref string str_val
)
public static int iStrMin(
CGXNETCore gxNetShared,
ref string str_val
)
Public Shared Function iStrMin (
gxNetShared As CGXNETCore,
ByRef str_val As String
) As Integer
Public Shared Function iStrMin (
gxNetShared As CGXNETCore,
ByRef str_val As String
) As Integer
public:
static int iStrMin(
CGXNETCore^ gxNetShared,
String^% str_val
)
public:
static int iStrMin(
CGXNETCore^ gxNetShared,
String^% str_val
)
static member iStrMin :
gxNetShared : CGXNETCore *
str_val : string byref -> int
static member iStrMin :
gxNetShared : CGXNETCore *
str_val : string byref -> int
Parameters
- gxNetShared
- Type: GeoEngine.Core.GXNetXCGXNETCore
A shared CGXNETCore - str_val
- Type: SystemString
String to find the min length of
Return Value
Type:
Int32String 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