DocumentBase.Close 方法
關閉文件。
命名空間: Microsoft.Office.Tools.Word
組件: Microsoft.Office.Tools.Word.v4.0.Utilities (在 Microsoft.Office.Tools.Word.v4.0.Utilities.dll 中)
語法
'宣告
Public Sub Close ( _
ByRef saveChanges As Object, _
ByRef originalFormat As Object, _
ByRef routeDocument As Object _
)
public void Close(
ref Object saveChanges,
ref Object originalFormat,
ref Object routeDocument
)
參數
- saveChanges
型別:System.Object%
指定文件的儲存動作。可以是下列其中一個 WdSaveOptions 值:wdDoNotSaveChanges、wdPromptToSaveChanges 或 wdSaveChanges。
- originalFormat
型別:System.Object%
指定文件的儲存格式。可以是下列其中一個 WdOriginalFormat 值:wdOriginalDocumentFormat、wdPromptUser 或 wdWordDocument。
- routeDocument
型別:System.Object%
true 表示傳送文件給下一個收件者。如果文件沒有附加傳閱名單,則會忽略此引數。
備註
選擇性參數
如需選擇性參數的詳細資訊,請參閱Office 方案中的選擇性參數。
範例
下列程式碼範例使用 Close 方法關閉文件,並且提示使用者將變更另存為 Word (.doc) 檔。 若要使用這個範例,請在文件層級專案中的 ThisDocument 類別執行。
Private Sub DocumentClose()
Me.Close(Word.WdSaveOptions.wdPromptToSaveChanges, _
Word.WdOriginalFormat.wdWordDocument, True)
End Sub
private void DocumentClose()
{
object saveChanges = Word.WdSaveOptions.wdPromptToSaveChanges;
object originalFormat = Word.WdOriginalFormat.wdWordDocument;
object routeDocument = true;
this.Close(ref saveChanges, ref originalFormat, ref routeDocument);
}
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。