|
XGrid(Int32, Int32, eDataType, IntPtr) Constructor
|
XGrid에 대한 생성자로서, 입력된 행과 열의 크기, 정의될 데이터 타입을 입력 받아 메모리 공간을 확보하고 입력 데이터를 복사한다.
Namespace: Pixoneer.NXDLAssembly: NXDL (in NXDL.dll) Version: 2.0.3.38
Syntaxpublic XGrid(
int RSize,
int CSize,
eDataType dataType,
IntPtr data
)
Parameters
- RSize Int32
- Row 크기.
- CSize Int32
- Column 크기.
- dataType eDataType
- eDataType으로 정의된 데이터 타입.
- data IntPtr
- 데이터. 주의! 생성하는 그리그 크기만큼 원본 데이터 메모리가 잡혀 있어야 한다.
See Also