특정 행이나 셀에 포커스가 있는지 확인합니다.
boolean isFocused( row, col );
Name | Type | Required | Description |
---|---|---|---|
row | object |
필수 | 데이터 로우 객체 |
col | string |
선택 | 열이름 |
boolean : 포커스 유무 (0:unfocused, 1:focused)
//id가 AR33인 행에 포커스가 있는지 확인한다.
var isfo = sheet.isFocused(sheet.getRowById("AR33"));
//특정 셀에 포커스가 있는지 확인한다.
var isfo = sheet.isFocused(sheet.getRowById("AR5"), "CA_DSC" );
product | version | desc |
---|---|---|
core | 8.0.0.0 | 기능 추가 |