artboardRowsOrCols

書式

DocumentPresetObject.artboardRowsOrCols

説明

新規にドキュメントを作成する際のアートボードの横または縦の折り返し数を指定します。1からDocumentPresetオブジェクトのnumArtboardsプロパティ-1までの数を指定できます。デフォルトでは1になっています。
var dp=new DocumentPreset();
dp.artboardLayout=DocumentArtboardLayout.RLGridByRow;
dp.numArtboards=7;
dp.artboardRowsOrCols=2;
var myDoc=app.documents.addDocument("", dp);

目次に戻る