変数 = 《Paragraph》.appendText( テキスト );
変数 = 《Paragraph》.appendText(《Text》);
変数 = 《Paragraph》.insertText( インデックス, テキスト );
変数 = 《Paragraph》.insertText( インデックス,《Text》);
変数 =《Text》.getForegroundColor();
変数 =《Text》.getBackgroundColor();
変数 = 《Text》.setForegroundColor( テキスト );
変数 = 《Text》.setBackgroundColor( テキスト );
変数 =《Text》.getFontFamily();
変数 =《Text》.getFontSize();
変数 = 《Text》.setFontFamily( 真偽値 );
変数 = 《Text》.setFontSize( 整数 );
変数 =《Text》.getBold();
変数 =《Text》.getItalic();
変数 =《Text》.getUnderline();
変数 = 《Text》.setBold( 真偽値 );
変数 = 《Text》.setItalic( 真偽値 );
変数 = 《Text》.setUnderline( 真偽値 );
※リストが表示されない場合
AddBlockなどの広告ブロックツールがONになっているとリストなどが表示されない場合があります。これらのツールをOFFにしてみてください。
function makeParagraph(){ var doc = DocumentApp.openById("……IDを指定……"); var p = doc.appendParagraph(""); var t1 = p.appendText("Welcome to "); t1.setForegroundColor("#FF0000").setFontSize(24); var t2 = p.appendText("Google "); t2.setForegroundColor("#00FF00").setFontSize(24); var t3 = p.appendText("Apps Script."); t3.setForegroundColor("#0000FF").setFontSize(24); }
<< 前へ | 次へ >> |