2012 年 3 月 23 日 金曜日
▼サンプルスクリプト
2012/3/12 18:00 〜 20:00に歯医者という件名の予定を作成するサンプルスクリプト。予定を作成するために、まずは予定を作成するカレンダーオブジェクトを取得する必要がある。
function createEvent(){
var calendar = CalendarApp.getCalendarById('xxxxxxxxxx@group.calendar.google.com');
calendar.createEvent('歯医者',
new Date('2012/3/12 18:00:00'),
new Date('2012/3/12 20:00:00'));
}
時間指定のほかに、予定の概要、場所情報を設定することもできる。
function createEvent2(){
var calendar = CalendarApp.getCalendarById('xxxxxxxxxx@group.calendar.google.com');
calendar.createEvent('歯医者',
new Date('2012/3/12 18:00:00'),
new Date('2012/3/12 20:00:00'),
{description: '概要',
location: '◯◯病院'}
);
}
createEvent(title, startTime, endTime, optAdvancedArgs)
カレンダーの予定を作成する。
このエントリーのトラックバックURL:
http://www.bmoo.net/archives/2012/03/313258.html/trackback
[…] [GAS][カレンダー]予定を作成するには: 逆引きGoogle Apps Script […]