我正在尝试使用appscript aheets setvalues()将一行标题粘贴到工作表中。我有:
new Container(
height: 48.0,
child: new Row(
children: <Widget>[
new InkWell(
onTap: cancelTurn,
child: new Align(child: new Image.asset("assets/cancel_button.png"), widthFactor: 1.5),
),
new Expanded(child: new Container()),
new InkWell(
onTap: confirmTurn,
child: new Align(child: new Image.asset("assets/confirm_button.png"), widthFactor: 1.5),
),
],
),
)
在标题中收到错误。
我做错了什么?
答案 0 :(得分:3)
您尝试将1行6列的值设置为3行6列的范围。您应该将范围更改为:
sheet.getRange(3,1,1,6).setValues(headingsArray);
自
<强> setValues方法(值)强>
设置矩形网格值(必须与此尺寸匹配) 范围内)。