Microsoft Word Suite
216
type text .......................................................................................................................................................................345
undo .............................................................................................................................................................................345
undo clear....................................................................................................................................................................346
unlink...........................................................................................................................................................................346
unprotect .....................................................................................................................................................................346
update ..........................................................................................................................................................................347
update document .......................................................................................................................................................348
update field .................................................................................................................................................................349
update page numbers ................................................................................................................................................349
update source..............................................................................................................................................................349
update styles ...............................................................................................................................................................350
update summary properties .....................................................................................................................................350
use address book ........................................................................................................................................................351
use default folder suffix.............................................................................................................................................351
view property browser ..............................................................................................................................................351
web page preview ......................................................................................................................................................352
Word help....................................................................................................................................................................352
Command: accept
Accepts the specified tracked change. The revision marks are removed, and the change is
incorporated into the document.
Syntax
accept revision Required. An expression that returns a revision object.
Example
This example accepts all of the tracked changes found if the change type is inserted text.
repeat with aRev in (get revisions of active document)
if (revision type of aRev) is revision insert then accept aRev
end repeat
This example accepts the first revision in the selection.
accept revision 1 of selection
Command: accept all revisions
Accepts all tracked changes in the specified document.
Syntax
accept all revisions document Required. An expression that returns a document object.
Example
This example checks the main story in the active document for tracked changes, and if there are any,
the example incorporates all revisions in all stories in the document.
if (count of revisions of active document) 1 then ¬
accept all revisions active document