我正在尝试使用Google脚本在Google幻灯片形状中包装文字
示例代码:
public class RoomStateMap: JsonMap < RoomState > {
public RoomStateMap() {
this.Map(x => x.isActive, "isActive");
this.Map(x => x.questionCount, "questionCount");
this.Map(x => x.answerTimeOut, "answerTimeOut");
this.Map(x => x.players, "players");
}
}
在上面的代码中,我试图访问 Google幻灯片 [slideNumber 4],从此幻灯片访问包含一些文本的Shape 0 ,我需要将其包装起来文字。