DialogFrame Property

Applies To

DialogSheet Object.

Description

Accessor. Returns a DialogFrame object that represents the dialog frame on the specified dialog sheet. Read only.

Example

This example sets the height and width of the dialog box frame for Dialog1.


With DialogSheets("Dialog1").DialogFrame
    .Height = 144
    .Width = 196
End With