Click or drag to resize
ShowDialog Method

Show the specified dialog box of AceoffixCtrl.

Syntax

[ JavaScript ]

document.getElementById("AceoffixCtrl1").ShowDialog(DlgType)

Parameters

DlgType

[in] Unsigned integer type. The type of the dialog box is going to be shown.

Possible Values of "DlgType" parameter.

  • 0: File -> New
  • 1: File -> Open
  • 2: File -> Save
  • 3: File -> Save As
  • 4: File -> Print
  • 5: File -> Page Setup
  • 6: File -> Properties
Return Value
No return value.
Remarks

Show the specified dialog box of AceoffixCtrl. The parameter is the type of dialog box.

Example
JavaScript
document.getElementById("AceoffixCtrl1").ShowDialog(5); // Show the print setup dialog box.
See Also