Read-only. A String type property. Returns the full name to the document/library file, including the path to the file (the Path property) if it has been set, and the name of the file itself (the Name property).
Applies to: Document object, Library object
[[Let] fullNameRet =] object.FullName |
The FullName property syntax has these parts:
Part | Description |
object | Required. An expression that returns an object in the Applies to list. |
fullNameRet | Optional. A String type variable. |
The FullName property is a combination of the Path and Name properties of the corresponding objects:
thisDoc.FullName = ( thisDoc.Path & thisDoc.Name ) ' returns True thisApp.Lib(1).FullName = ( thisApp.Lib(1).Path & thisApp.Lib(1).Name ) ' returns True |
FullName changes automatically when Path or Name are changed, and also when the document or library are saved under a new name in ConceptDraw using the Save dialog.
See Also |
Name property, Path property |