 | CWACreateSBFEx Method |
Creates an ASCII file to write to in an SBF.
Namespace:
GeoEngine.Core.GXNetX
Assembly:
geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2024.2.0.25
Syntaxpublic static CWA CreateSBFEx(
CGXNETCore gxNetShared,
CSBF sbf,
string file,
int append,
int encode
)
public static CWA CreateSBFEx(
CGXNETCore gxNetShared,
CSBF sbf,
string file,
int append,
int encode
)
Public Shared Function CreateSBFEx (
gxNetShared As CGXNETCore,
sbf As CSBF,
file As String,
append As Integer,
encode As Integer
) As CWA
Public Shared Function CreateSBFEx (
gxNetShared As CGXNETCore,
sbf As CSBF,
file As String,
append As Integer,
encode As Integer
) As CWA
public:
static CWA^ CreateSBFEx(
CGXNETCore^ gxNetShared,
CSBF^ sbf,
String^ file,
int append,
int encode
)
public:
static CWA^ CreateSBFEx(
CGXNETCore^ gxNetShared,
CSBF^ sbf,
String^ file,
int append,
int encode
)
static member CreateSBFEx :
gxNetShared : CGXNETCore *
sbf : CSBF *
file : string *
append : int *
encode : int -> CWA
static member CreateSBFEx :
gxNetShared : CGXNETCore *
sbf : CSBF *
file : string *
append : int *
encode : int -> CWA
Parameters
- gxNetShared
- Type: GeoEngine.Core.GXNetXCGXNETCore
A shared CGXNETCore - sbf
- Type: GeoEngine.Core.GXNetXCSBF
Storage - 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
Also see sbf.gxh
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