 | CVASetString Method |
Set a string element in a VA.
Namespace:
GeoEngine.Core.GXNetX
Assembly:
geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2024.2.0.25
Syntaxpublic void SetString(
int row,
int col,
string value
)
public void SetString(
int row,
int col,
string value
)
Public Sub SetString (
row As Integer,
col As Integer,
value As String
)
Public Sub SetString (
row As Integer,
col As Integer,
value As String
)
public:
void SetString(
int row,
int col,
String^ value
)
public:
void SetString(
int row,
int col,
String^ value
)
member SetString :
row : int *
col : int *
value : string -> unit
member SetString :
row : int *
col : int *
value : string -> unit
Parameters
- row
- Type: SystemInt32
Row - col
- Type: SystemInt32
Column - value
- Type: SystemString
String to set
Remarks
Element being set cannot be < 0.
If the element is > current VA length, the VA length is
increased.
See Also