Click or drag to resize
XDL

XGridAllocExact Method

입력받은 자료 공간 차원 정보 및 데이터 타입에 해당하는 메모리 공간을 할당한다. 이 함수를 통해 할당하는 메모리는 Alloc함수와는 다르게 기존에 할당된 메모리를 무조건 해제하고 다시 할당한다.

Namespace:  Pixoneer.NXDL
Assembly:  NXDL (in NXDL.dll) Version: 2.0.3.31
Syntax
C#
public bool AllocExact(
	int RSize,
	int CSize,
	eDataType dataType
)

Parameters

RSize
Type: SystemInt32
Row 크기.
CSize
Type: SystemInt32
Column 크기.
dataType
Type: Pixoneer.NXDLeDataType
eDataType 데이터 타입.

Return Value

Type: Boolean
성공인경우 true, 실패인 경우 false
See Also