次の方法で共有


Subdocument.HasFile Property

Word Developer Reference

True if the specified subdocument has been saved to a file. Read-only Boolean.

Syntax

expression.HasFile

expression   A variable that represents a Subdocument object.

Example

This example displays the file name of each subdocument in the active document. The example also displays a message for each subdocument that has not been saved.

Visual Basic for Applications
  Dim subLoop As Subdocument

For Each subLoop In ActiveDocument.Subdocuments subLoop.Range.Select If subLoop.HasFile = True Then MsgBox subLoop.Path & Application.PathSeparator _ & subLoop.Name Else MsgBox "This subdocument has not been saved." End If Next subLoop

See Also