Click or drag to resize
CVVMakeMemBased Method
Make this VV use regular instead of virtual memory.

Available since Oasis montaj version: 5.1.2
License: Available to anyone with an Oasis Montaj license.  

Namespace: GeoEngine.Core.GXNet
Assembly: geoengine.core.gxnet (in geoengine.core.gxnet.dll)
Notes
This function should be called immediately aftter Create_VV. Normal VVs are optimised to prevent thrashing, and to efficiently support many extremely large VVs, although there is a small performance penalty. This function is intended for VV's that you know can be handled by the operating system virtual memory manager, and will be used heavily. By using a memory based VV, you can achieve some performance improvements provided your application does not cause the memory manager to "thrash". External programs that use the GX API may prefer to use memory-based VV's because you can get direct access to the VV through the GetPtrVV_GEO function (see gx_extern.h).
Syntax
public void MakeMemBased()
See Also