Skip to content

Latest commit

 

History

History
54 lines (32 loc) · 1.59 KB

Visio.Application.Settings.md

File metadata and controls

54 lines (32 loc) · 1.59 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Application.Settings property (Visio)
vis_sdr.chm10051635
vis_sdr.chm10051635
Visio.Application.Settings
b62413cb-a038-2679-8701-47ba700a93c4
06/08/2017
medium

Application.Settings property (Visio)

Returns an ApplicationSettings object, which you can use to set Microsoft Visio application properties. Read-only.

Syntax

expression.Settings

expression A variable that represents an Application object.

Return value

ApplicationSettings

Remarks

Use the Settings property of the Application object to get an ApplicationSettings object that you can then use to set various application properties corresponding to those in the Options dialog box (click the File tab, and then click Options) and the Snap & Glue dialog box (on the View tab, click the Visual Aids arrow).

Example

This Microsoft Visual Basic for Applications (VBA) macro shows how to use the Settings property to get an ApplicationSettings object. It also shows how to use the RecentFilesListSize property to get the number of entries in the list of recently used files in Visio.

Public Sub Settings_Example() 
 
    Dim vsoApplicationSettings As Visio.ApplicationSettings 
    Dim lngListSize As Long 
 
    Set vsoApplicationSettings = Visio.Application.Settings 
    lngListSize = vsoApplicationSettings.RecentFilesListSize 
 
    Debug.Print lngListSize 
 
End Sub

[!includeSupport and feedback]