Remarks

Workbook-level attribute settings override application-level attribute settings. Workbook-level attributes are contained in the object.

Note
Attribute values can be different from one workbook to another, depending on the attribute value at the time the workbook was saved.

Example

Use the property to return the DefaultWebOptions object. The following example checks to see whether PNG (Portable Network Graphics) is allowed as an image format and sets the strImageFileType variable accordingly.

Visual Basic for Applications
Set objAppWebOptions = Application.DefaultWebOptions With objAppWebOptions If .AllowPNG = True Then strImageFileType = "PNG" Else strImageFileType = "JPG" End If End With
Default Web Options Object

See also: