Skip to content

Latest commit

 

History

History
65 lines (38 loc) · 1.37 KB

Word.Application.PathSeparator.md

File metadata and controls

65 lines (38 loc) · 1.37 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Application.PathSeparator property (Word)
vbawd10.chm158335072
vbawd10.chm158335072
Word.Application.PathSeparator
29347a13-8edb-0b02-32c3-d091eb52c9f1
06/08/2017
medium

Application.PathSeparator property (Word)

Returns the character used to separate folder names. This property returns a backslash (). Read-only String.

Syntax

expression. PathSeparator

expression An expression that returns an Application object.

Remarks

Use PathSeparator property to build web addresses even though they contain forward slashes (/).

Note

The FullName property returns the path and file name, including the path separator, as a single string.

Example

This example displays the path and file name of the active document.

MsgBox ActiveDocument.Path & Application.PathSeparator & _ 
 ActiveDocument.Name

If the first add-in is a template, this example unloads the template and opens it.

If Addins(1).Compiled = False Then 
 Addins(1).Installed = False 
 Documents.Open FileName:=AddIns(1).Path _ 
 & Application.PathSeparator _ 
 & AddIns(1).Name 
End If

See also

Application Object

[!includeSupport and feedback]