 | CVVCreate Method |
Create a VV.
Namespace:
GeoEngine.Core.GXNetX
Assembly:
geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2024.2.0.25
Syntaxpublic static CVV Create(
CGXNETCore gxNetShared,
int type,
int elements
)
public static CVV Create(
CGXNETCore gxNetShared,
int type,
int elements
)
Public Shared Function Create (
gxNetShared As CGXNETCore,
type As Integer,
elements As Integer
) As CVV
Public Shared Function Create (
gxNetShared As CGXNETCore,
type As Integer,
elements As Integer
) As CVV
public:
static CVV^ Create(
CGXNETCore^ gxNetShared,
int type,
int elements
)
public:
static CVV^ Create(
CGXNETCore^ gxNetShared,
int type,
int elements
)
static member Create :
gxNetShared : CGXNETCore *
type : int *
elements : int -> CVV
static member Create :
gxNetShared : CGXNETCore *
type : int *
elements : int -> CVV
Parameters
- gxNetShared
- Type: GeoEngine.Core.GXNetXCGXNETCore
A shared CGXNETCore - type
- Type: SystemInt32
<define>GEO_VAR</define> - elements
- Type: SystemInt32
Maximum number of elements in the VV, >= 0
Return Value
Type:
CVVVV Object
Remarks
To set the fiducial start and increment for the data in the VV
you need to call SetFidStart_VV and SetFidIncr_VV.
If you are basing the VV data on fiducial information from a
different VV, call GetFidStart_VV and GetFidIncr_VV to obtain
that VV's fiducial information. Do this prior to setting the
new VV's fiducial start and increment.
If you do not know the required length for a VV, use 0
and the VV length will be adjusted as needed. This is
a bit less efficient than setting the length when you
know it.
See Also