Word) (Range.InsertDateTime 方法
會插入目前日期或時間或者兩個都要,做為文字或 TIME 功能變數。
語法
運算式。InsertDateTime (DateTimeFormat、 InsertAsField、 InsertAsFullWidth、 DateLanguage、 CalendarType)
需要 expression。 代表 Range 物件的變數。
參數
名稱 | 必要/選用 | 資料類型 | 描述 |
---|---|---|---|
DateTimeFormat | 選用 | Variant | The format to be used for displaying the date or time, or both. 如果省略此引數,Microsoft Word 就會使用 Windows [控制台] ([地區設定] 圖示) 中的簡短日期樣式。 |
InsertAsField | 選用 | Variant | True 是表示 插入指定的資訊 TIME 功能變數。 預設值為 True 。 |
InsertAsFullWidth | 選用 | Variant | True 是表示 插入指定的資訊為雙位元組數字。 此引數可能無法使用時,根據您所選取或安裝的語言支援 (例如 US English)。 |
DateLanguage | 選用 | Variant | 設定用來顯示日期或時間的語言。 可以是其中 WdDateLanguage 常數。 此引數可能無法使用時,根據您所選取或安裝的語言支援 (例如 US English)。 |
CalendarType | 選用 | Variant | 設定要顯示日期或時間時使用的行事曆類型。 可以是其中 WdCalendarTypeBi 常數。 此引數可能無法使用時,根據您所選取或安裝的語言支援 (例如 US English)。 |
範例
這個範例會在使用中文件的結尾插入目前日期。 其結果可能是 "01/12/99"。
With ActiveDocument.Content
.Collapse Direction:=wdCollapseEnd
.InsertDateTime DateTimeFormat:="MM/dd/yy", _
InsertAsField:=False
End With
這個範例會在使用中文件的註腳內插入目前日期的 TIME 功能變數。
ActiveDocument.Sections(1).Footers(wdHeaderFooterPrimary).Range _
.InsertDateTime DateTimeFormat:="MMMM dd, yyyy", _
InsertAsField:=True
另請參閱
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。