getRowById (method)

ID를 기준으로 데이터 로우 객체를 반환합니다.

Syntax

string getRowById( id );

Parameters

Name Type Required Description
id string 필수 행의 id

Return Value

row object : 데이터 로우 객체

Example

//AR5 행객체를 얻어 상태를 삭제로 변경한다.
var row = sheet.getRowById("AR5");
row["Deleted"] = 1;
sheet.renderBody();

Read More

Since

product version desc
core 8.0.0.0 기능 추가