次の方法で共有


DefaultWebOptions.CheckIfWordIsDefaultHTMLEditor Property

Word Developer Reference

True if Microsoft Word checks to see whether it is the default HTML editor when you start Word. Read/write Boolean.

Syntax

expression.CheckIfWordIsDefaultHTMLEditor

expression   A variable that represents a DefaultWebOptions object.

Remarks

The CheckIfWordIsDefaultHTMLEditor property returnsFalse if Word does not perform this check. The default value is True.

This property is used only if the Web browser you are using supports HTML editing and HTML editors. To use a different HTML editor, you must set this property to False and then register the editor as the default system HTML editor.

Example

This example sets Microsoft Word to check to see whether it is the default HTML editor.

Visual Basic for Applications
  Application.DefaultWebOptions _
    .CheckIfWordIsDefaultHTMLEditor = True

See Also