(Word) 的Application.ScreenUpdating 屬性 - Microsoft Docs
文章推薦指數: 80 %
Application.ScreenUpdating = False Documents.Add For x = 1 To 500 With ActiveDocument.Content .InsertAfter "This is line " & x & "." .
跳到主要內容
已不再支援此瀏覽器。
請升級至MicrosoftEdge,以利用最新功能、安全性更新和技術支援。
下載MicrosoftEdge
其他資訊
目錄
結束焦點模式
閱讀英文
儲存
目錄
閱讀英文
儲存
編輯
Twitter
LinkedIn
Facebook
電子郵件
目錄
(Word)的Application.ScreenUpdating屬性
發行項
04/07/2022
1位參與者
本文內容
如果開啟螢幕更新,則本屬性值為True。
可讀寫的Boolean。
語法
expression.ScreenUpdating
表達會傳回Application物件的運算式。
註解
當程序正在執行時ScreenUpdating屬性會控制最在螢幕上顯示的變更。
當螢幕更新已關閉時,仍會顯示工具列與Word仍可讓顯示或使用狀態列提示、輸入的方塊、對話方塊和訊息方塊擷取資訊的程序。
您可以增加速度的一些程序所保持關閉螢幕更新功能。
您必須將ScreenUpdating屬性設定為True程序完成或時發生其錯誤之後停駐點。
範例
此範例會關閉螢幕更新,然後新增新文件。
它會在此文件中新增五百行文字。
而每到第五十行,巨集就會選取該行,然後重新整理螢幕。
Application.ScreenUpdating=False
Documents.Add
Forx=1To500
WithActiveDocument.Content
.InsertAfter"Thisisline"&x&"."
.InsertParagraphAfter
EndWith
IfxMod50=0Then
ActiveDocument.Paragraphs(x).Range.Select
Application.ScreenRefresh
EndIf
Nextx
Application.ScreenUpdating=True
另請參閱
Application物件
支援和意見反應
有關於OfficeVBA或這份文件的問題或意見反應嗎?如需取得支援服務並提供意見反應的相關指導,請參閱OfficeVBA支援與意見反應。
本文內容
延伸文章資訊
- 1Screen Updating using VBA in Excel - Excely.com
Screen Updating using VBA in Excel. When you don't want to see your screen follow the actions of ...
- 2Application.ScreenUpdating can dramatically speed up your ...
Application.ScreenUpdating is a setting within Excel that - when turned on - will visibly update ...
- 3VBA Excel Application Screenupdating
VBA Lesson 13: VBA for Excel for the Application. This is an excerpt from Pierre Leclerc (www.exc...
- 4(Word) 的Application.ScreenUpdating 屬性 - Microsoft Docs
Application.ScreenUpdating = False Documents.Add For x = 1 To 500 With ActiveDocument.Content .In...
- 5Turn off Screen Updating - VBA Code Examples
VBA – Turn off Screen Updating. In this Article. Disable ScreenUpdating; Enable ScreenUpdating; V...