Word.CalendarType enum
Calendar型。
注釈
使用元
例
// Link to full sample: https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/10-content-controls/insert-and-change-date-picker-content-control.yaml
function changeCalendarType(datePicker: Word.DatePickerContentControl) {
// The calendar type can only be set to a value compatible with the display locale.
// For the Japanese locale, valid calendar types are Gregorian and Japan.
datePicker.dateCalendarType = Word.CalendarType.japan;
}
フィールド
| arabic = "Arabic" | アラビア語の予定表の種類。 |
| hebrew = "Hebrew" | ヘブライ語の予定表の種類。 |
| japan = "Japan" | 日本語の予定表の種類。 |
| korean = "Korean" | 韓国語の予定表の種類。 |
| sakaEra = "SakaEra" | 坂時代のカレンダーの種類。 |
| taiwan = "Taiwan" | 台湾の予定表の種類。 |
| thai = "Thai" | タイ語の予定表の種類。 |
| translitEnglish = "TranslitEnglish" | 文字変換された英語の予定表の種類。 |
| translitFrench = "TranslitFrench" | 文字変換されたフランス語の予定表の種類。 |
| umalqura = "Umalqura" | um al-Qura カレンダーの種類。 |
| western = "Western" | 西洋暦の種類。 |