 | CSTRIJustify Method (CGXNETCore, String, String, Int32, Int32) |
Justify a string
Namespace:
GeoEngine.Core.GXNetX
Assembly:
geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2024.2.0.25
Syntaxpublic static void IJustify(
CGXNETCore gxNetShared,
string in_str,
ref string out_str,
int width,
int just
)
public static void IJustify(
CGXNETCore gxNetShared,
string in_str,
ref string out_str,
int width,
int just
)
Public Shared Sub IJustify (
gxNetShared As CGXNETCore,
in_str As String,
ByRef out_str As String,
width As Integer,
just As Integer
)
Public Shared Sub IJustify (
gxNetShared As CGXNETCore,
in_str As String,
ByRef out_str As String,
width As Integer,
just As Integer
)
public:
static void IJustify(
CGXNETCore^ gxNetShared,
String^ in_str,
String^% out_str,
int width,
int just
)
public:
static void IJustify(
CGXNETCore^ gxNetShared,
String^ in_str,
String^% out_str,
int width,
int just
)
static member IJustify :
gxNetShared : CGXNETCore *
in_str : string *
out_str : string byref *
width : int *
just : int -> unit
static member IJustify :
gxNetShared : CGXNETCore *
in_str : string *
out_str : string byref *
width : int *
just : int -> unit
Parameters
- gxNetShared
- Type: GeoEngine.Core.GXNetXCGXNETCore
A shared CGXNETCore - in_str
- Type: SystemString
String to justify - out_str
- Type: SystemString
Result string, can be same as input - width
- Type: SystemInt32
Justification width - just
- Type: SystemInt32
<define>STR_JUSTIFY</define>
Remarks
If the string is too big to fit in the number of display characters,
the output string will be "**" justified as specified.
See Also