 | CIMGCreateMem Method |
Creates an IMG object that is backed only by memory.
Namespace:
GeoEngine.Core.GXNetX
Assembly:
geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2024.2.0.25
Syntaxpublic static CIMG CreateMem(
CGXNETCore gxNetShared,
int type,
int kx,
int width,
int height
)
public static CIMG CreateMem(
CGXNETCore gxNetShared,
int type,
int kx,
int width,
int height
)
Public Shared Function CreateMem (
gxNetShared As CGXNETCore,
type As Integer,
kx As Integer,
width As Integer,
height As Integer
) As CIMG
Public Shared Function CreateMem (
gxNetShared As CGXNETCore,
type As Integer,
kx As Integer,
width As Integer,
height As Integer
) As CIMG
public:
static CIMG^ CreateMem(
CGXNETCore^ gxNetShared,
int type,
int kx,
int width,
int height
)
public:
static CIMG^ CreateMem(
CGXNETCore^ gxNetShared,
int type,
int kx,
int width,
int height
)
static member CreateMem :
gxNetShared : CGXNETCore *
type : int *
kx : int *
width : int *
height : int -> CIMG
static member CreateMem :
gxNetShared : CGXNETCore *
type : int *
kx : int *
width : int *
height : int -> CIMG
Parameters
- gxNetShared
- Type: GeoEngine.Core.GXNetXCGXNETCore
A shared CGXNETCore - type
- Type: SystemInt32
Data type, <define>GS_TYPES</define> - kx
- Type: SystemInt32
Grid orientation (KX): 1 (rows in X) -1 (rows in Y) - width
- Type: SystemInt32
Grid width - height
- Type: SystemInt32
Grid height
Return Value
Type:
CIMGIMG object
RemarksOnce destroyed all the data is lost. This is temporary.
See Also