TextFont (row)

특정행의 font-family를 설정합니다.
여러개 폰트를 지정하거나 폰트에 띄어씌기가 들어가는 경우에는 single(')/double quotation("")으로 지정합니다.

Type

string

Options

Value Description
string 글자체

Example

//특정행의 글자체를 수정합니다.
var row = sheet.getRowById("AR33");
row["TextFont"] = '"Times New Roman", "Gungsuh", "Helvetica"';
sheet.refreshRow(row);

//조회 데이터에서 특정행에 대해 글자체를 변경합니다.
{"data":[
    ...
    {"TextFont": "Gulim", "ColName1": "Value1", "ColName2": "Value2", ...},
    ...
]}

Read More

Since

product version desc
core 8.0.0.0 기능 추가