현재 화면의 해당 xDataSet Instance를 반환한다.
Parameters | Type | Description |
---|---|---|
strXDataSetID | STRING | 해당 xDataSet ID |
Type | Description |
---|---|
INSTANCE | xDataSet Instance |
function getXDataSetTest(instScreen)
{
var instXDataSet = screen.getxdataset("xDataSetID_01");
if(instXDataSet == null) {
return;
}
factory.consoleprint(instXDataSet.getdata(0, 0));
}