OnDblClick (event)
데이터 영역의 셀을 마우스로 더블 클릭했을 때 이벤트가 발생합니다.
Syntax
function 오브젝트ID_OnDblClick(Row, Col, Value, CellX, CellY, CellW, CellH) { }
Parameters
| Parameter |
Type |
Description |
| Row |
Long |
해당 셀의 Row Index |
| Col |
Long |
해당 셀의 Column Index |
| Value |
String |
해당 셀의 Value |
| CellX |
Long |
해당셀의 X좌표 |
| CellY |
Long |
해당셀의 Y좌표 |
| CellW |
Long |
해당셀의 가로 넓이값 |
| CellH |
Long |
해당셀의 세로 높이값 |
Example
function mySheet_OnDblClick(Row, Col, Value, CellX, CellY, CellW, CellH) {
var selectRowJson = mySheet.GetRowData(Row);
parent.GetData(selectRowJson);
self.close();
return false;
}
See also
Since