  | CVVCreate Method  | 
 Create a VV.
 
    Namespace: 
   GeoEngine.Core.GXNet
    Assembly:
   geoengine.core.gxnet (in geoengine.core.gxnet.dll) Version: 2025.1.0.25
Syntaxpublic static CVV Create(
	int type,
	int elements
)
public static CVV Create(
	int type,
	int elements
)
Public Shared Function Create ( 
	type As Integer,
	elements As Integer
) As CVV
Public Shared Function Create ( 
	type As Integer,
	elements As Integer
) As CVV
public:
static CVV^ Create(
	int type, 
	int elements
)
public:
static CVV^ Create(
	int type, 
	int elements
)
static member Create : 
        type : int * 
        elements : int -> CVV 
static member Create : 
        type : int * 
        elements : int -> CVV 
Parameters
- 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