Click or drag to resize
XDL

XGridAlloc Method

입력받은 자료 공간 차원 정보 및 데이터 타입에 해당하는 메모리 공간을 할당한다. 만약 이미 할당된 공간이 할당하고자 하는 메모리 공간보다 큰 경우 새롭게 메모리를 할당하지 않고 기존 메모리를 사용하되 파라미터(행 크기, 열 크기, 데이터 타입)만을 변경시킨다.

Namespace:  Pixoneer.NXDL
Assembly:  NXDL (in NXDL.dll) Version: 2.0.3.31
Syntax
C#
public bool Alloc(
	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