 | CWACreateEx Method |
Creates an ASCII file to write to.
Namespace:
GeoEngine.Core.GXNetX
Assembly:
geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2024.2.0.25
Syntaxpublic static CWA CreateEx(
CGXNETCore gxNetShared,
string file,
int append,
int encode
)
public static CWA CreateEx(
CGXNETCore gxNetShared,
string file,
int append,
int encode
)
Public Shared Function CreateEx (
gxNetShared As CGXNETCore,
file As String,
append As Integer,
encode As Integer
) As CWA
Public Shared Function CreateEx (
gxNetShared As CGXNETCore,
file As String,
append As Integer,
encode As Integer
) As CWA
public:
static CWA^ CreateEx(
CGXNETCore^ gxNetShared,
String^ file,
int append,
int encode
)
public:
static CWA^ CreateEx(
CGXNETCore^ gxNetShared,
String^ file,
int append,
int encode
)
static member CreateEx :
gxNetShared : CGXNETCore *
file : string *
append : int *
encode : int -> CWA
static member CreateEx :
gxNetShared : CGXNETCore *
file : string *
append : int *
encode : int -> CWA
Parameters
- gxNetShared
- Type: GeoEngine.Core.GXNetXCGXNETCore
A shared CGXNETCore - file
- Type: SystemString
Name of the File - append
- Type: SystemInt32
<define>WA_OPEN</define> - encode
- Type: SystemInt32
<define>WA_ENCODE</define>
Return Value
Type:
CWAWA Handle
Remarks
Before version 6.2. text in on the GX API level were handled as characters in the current ANSI code page
defining how characters above ASCII 127 would be displayed. 6.2. introduced Unicode in the core
montaj engine that greatly increased the number of symbols that can be used. The <define>WA_ENCODE</define> constants
were introduce that controls how text are written to files on disk with the WA class.
See Also