Share via


PromptForSummary Property [Visio 2003 SDK Documentation]

Determines whether Microsoft Office Visio prompts for document properties when it saves a document.

intRet = object**.PromptForSummary**

object**.PromptForSummary** = intExpression

intRet     Integer. Zero (0) if prompting is off; -1 if it is on.

object     Required. An expression that returns an Application object.

intExpression     Required Integer. Zero (0) to turn prompting off; non-zero to turn it on.

Version added

4.0

Remarks

This property corresponds to the Prompt for document properties on first save check box on the Save tab in the Options dialog box (Tools menu).

Example

This Microsoft Visual Basic for Applications (VBA) macro toggles the PromptForSummary property of the Visio Application object.

Public Sub PromptForSummary_Example()
 
    Application.PromptForSummary = Not Application.PromptForSummary 

End Sub

Applies to | Application object | InvisibleApp object

See Also | Category property | Creator property | Description property | HyperlinkBase property | Keywords property | Subject property | Title property