 | CVVSetRealN Method |
Set N real elements in a VV.
Namespace:
GeoEngine.Core.GXNetX
Assembly:
geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2024.2.0.25
Syntaxpublic void SetRealN(
int start,
int n,
double value
)
public void SetRealN(
int start,
int n,
double value
)
Public Sub SetRealN (
start As Integer,
n As Integer,
value As Double
)
Public Sub SetRealN (
start As Integer,
n As Integer,
value As Double
)
public:
void SetRealN(
int start,
int n,
double value
)
public:
void SetRealN(
int start,
int n,
double value
)
member SetRealN :
start : int *
n : int *
value : float -> unit
member SetRealN :
start : int *
n : int *
value : float -> unit
Parameters
- start
- Type: SystemInt32
Start element (>= 0) - n
- Type: SystemInt32
# elements to set (-1 sets all elements to end) - value
- Type: SystemDouble
Value to set
Remarks
Element being set cannot be < 0.
If the element is > current VV length, the VV length is
increased.
See Also