  | CVVSetStringN Method  | 
 Set N string elements in a VV.
 
    Namespace: 
   GeoEngine.Core.GXNet
    Assembly:
   geoengine.core.gxnet (in geoengine.core.gxnet.dll) Version: 2025.1.0.25
Syntaxpublic void SetStringN(
	int start,
	int n,
	string value
)
public void SetStringN(
	int start,
	int n,
	string value
)
Public Sub SetStringN ( 
	start As Integer,
	n As Integer,
	value As String
)
Public Sub SetStringN ( 
	start As Integer,
	n As Integer,
	value As String
)
public:
void SetStringN(
	int start, 
	int n, 
	String^ value
)
public:
void SetStringN(
	int start, 
	int n, 
	String^ value
)
member SetStringN : 
        start : int * 
        n : int * 
        value : string -> unit 
member SetStringN : 
        start : int * 
        n : int * 
        value : string -> unit 
Parameters
- start
 - Type: SystemInt32
Start element (>= 0) - n
 - Type: SystemInt32
# elements to set (-1 sets all elements to end) - value
 - Type: SystemString
String to set 
Remarks
Element being set cannot be < 0.
If the element is > current VV length, the VV length is
increased.
See Also