 | CIMGCreateMem Method |
Creates an IMG object that is backed only by memory.
Namespace:
GeoEngine.Core.GXNet
Assembly:
geoengine.core.gxnet (in geoengine.core.gxnet.dll) Version: 2024.2.0.25
Syntaxpublic static CIMG CreateMem(
int type,
int kx,
int width,
int height
)
public static CIMG CreateMem(
int type,
int kx,
int width,
int height
)
Public Shared Function CreateMem (
type As Integer,
kx As Integer,
width As Integer,
height As Integer
) As CIMG
Public Shared Function CreateMem (
type As Integer,
kx As Integer,
width As Integer,
height As Integer
) As CIMG
public:
static CIMG^ CreateMem(
int type,
int kx,
int width,
int height
)
public:
static CIMG^ CreateMem(
int type,
int kx,
int width,
int height
)
static member CreateMem :
type : int *
kx : int *
width : int *
height : int -> CIMG
static member CreateMem :
type : int *
kx : int *
width : int *
height : int -> CIMG
Parameters
- 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