Click or drag to resize
XDL

XGrid Constructor (Int32, Int32, eDataType, IntPtr)

XGrid에 대한 생성자로서, 입력된 행과 열의 크기, 정의될 데이터 타입을 입력 받아 메모리 공간을 확보하고 입력 데이터를 복사한다.

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

Parameters

RSize
Type: SystemInt32
Row 크기.
CSize
Type: SystemInt32
Column 크기.
dataType
Type: Pixoneer.NXDLeDataType
eDataType으로 정의된 데이터 타입.
data
Type: SystemIntPtr
데이터. 주의! 생성하는 그리그 크기만큼 원본 데이터 메모리가 잡혀 있어야 한다.
See Also