在打开框架页时,返回或设置在指定框架页中显示的 Web 页或其他文档。String 类型,可读写。
有关创建框架页的详细内容,请参阅创建框架页。
本示例实现的功能是:设定在指定的框架中显示一个名为“Order.htm”的本地文件。
With ActiveDocument.ActiveWindow.ActivePane.Frameset
.FrameDefaultURL = "C:\Documents\Order.htm"
.FrameLinkToFile = True
End With