 | CDBGenValidLineSymb Method (CGXNETCore, String, String) |
Generate a valid line symb name string from given string.
Namespace:
GeoEngine.Core.GXNetX
Assembly:
geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2024.2.0.25
Syntaxpublic static void GenValidLineSymb(
CGXNETCore gxNetShared,
string str_in,
ref string str_out
)
public static void GenValidLineSymb(
CGXNETCore gxNetShared,
string str_in,
ref string str_out
)
Public Shared Sub GenValidLineSymb (
gxNetShared As CGXNETCore,
str_in As String,
ByRef str_out As String
)
Public Shared Sub GenValidLineSymb (
gxNetShared As CGXNETCore,
str_in As String,
ByRef str_out As String
)
public:
static void GenValidLineSymb(
CGXNETCore^ gxNetShared,
String^ str_in,
String^% str_out
)
public:
static void GenValidLineSymb(
CGXNETCore^ gxNetShared,
String^ str_in,
String^% str_out
)
static member GenValidLineSymb :
gxNetShared : CGXNETCore *
str_in : string *
str_out : string byref -> unit
static member GenValidLineSymb :
gxNetShared : CGXNETCore *
str_in : string *
str_out : string byref -> unit
Parameters
- gxNetShared
- Type: GeoEngine.Core.GXNetXCGXNETCore
A shared CGXNETCore - str_in
- Type: SystemString
Input string - str_out
- Type: SystemString
Outout string
Remarks
The returned name is either the same size as the input
or shorter. Escapes, leading and trailing spaces are removed, then
all illegal characters are replaced with an underscore.
See Also