Office.RecurrenceProperties interface
表示重复周期的属性。
注解
最低权限级别: 读取项
适用的 Outlook 模式:撰写或阅读
示例
// This example gets the Recurrence object of an appointment item.
Office.context.mailbox.item.recurrence.getAsync(callback);
function callback(asyncResult) {
const context = asyncResult.context;
const recurrence = asyncResult.value;
if (!recurrence) {
console.log("One-time appointment or meeting");
} else {
console.log(JSON.stringify(recurrence));
}
}
// The following example shows the results of the getAsync call that retrieves the recurrence for a series.
// NOTE: In this example, seriesTimeObject is a placeholder for the JSON representing the
// recurrence.seriesTime property. You should use the SeriesTime object's methods to get the
// recurrence date and time properties.
Recurrence = {
"recurrenceType": "weekly",
"recurrenceProperties": {"interval": 2, "days": ["mon","thu","fri"], "firstDayOfWeek": "sun"},
"seriesTime": {seriesTimeObject},
"recurrenceTimeZone": {"name": "Pacific Standard Time", "offset": -480}
}
属性
day |
表示月份中的某一天。 |
day |
表示星期几或日期类型,例如,周末与工作日。 |
days | 表示此重复周期的天数集。 有效值为:“Mon”、“Tue”、“Wed”、“Thu”、“Fri”、“Sat”和“Sun”。 |
first |
表示所选的一周的第一天,否则默认值为当前用户设置中的值。 有效值为:“Mon”、“Tue”、“Wed”、“Thu”、“Fri”、“Sat”和“Sun”。 |
interval | 表示同一重复序列的实例之间的时间段。 |
month | 表示月份。 |
week |
表示所选月份中的周数,例如,当月第一周的“first”。 |
属性详细信息
dayOfMonth
表示月份中的某一天。
dayOfMonth?: number;
属性值
number
dayOfWeek
days
表示此重复周期的天数集。 有效值为:“Mon”、“Tue”、“Wed”、“Thu”、“Fri”、“Sat”和“Sun”。
days?: MailboxEnums.Days[] | string[];
属性值
Office.MailboxEnums.Days[] | string[]
firstDayOfWeek
表示所选的一周的第一天,否则默认值为当前用户设置中的值。 有效值为:“Mon”、“Tue”、“Wed”、“Thu”、“Fri”、“Sat”和“Sun”。
firstDayOfWeek?: MailboxEnums.Days | string;
属性值
Office.MailboxEnums.Days | string
interval
表示同一重复序列的实例之间的时间段。
interval: number;
属性值
number
month
weekNumber
表示所选月份中的周数,例如,当月第一周的“first”。
weekNumber?: MailboxEnums.WeekNumber | string;
属性值
Office.MailboxEnums.WeekNumber | string