> For the complete documentation index, see [llms.txt](https://help.auxalia.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://help.auxalia.com/plant-tools/plantexpresstools/how-to-use/plantprojectmanager/setup/categories/document-node-text.md).

# Document node text

The Document node text is the text you see in PlantProjectManager for the drawings of this Category.

The expression cannot be edited in the box itself. To edit the expression you click on the "..." button.

![](/files/RbjslcF1i1aoqW5JlyZZ)

The Expression Editor opens. What you see here is the default expression.

![](/files/mm1iXxaVd2oDmOjLoIYL)

Here in a bit more user friendly layout.

What happens here is, that the text you will later see is using the \[FileName] of the drawing as the first part of the expression.

The next line checks if the Drawing Property \[Revision\_Version] has a value. If this is the case the expression ' - v:'+\[Revision\_Version] will be added to the FileName

Iif(ISNULLOREMPTY(\[Revision\_Version]),'',' - v:'+\[Revision\_Version]) +

The next line does the same, but this time with the \[Revision\_Revision] Property.

Iif(ISNULLOREMPTY(\[Revision\_Revision]),'',' - r:'+\[Revision\_Revision])

This can lead to the following results:

PID001\
PID001 - v:0\
PID001 - r:A\
PID001 - v:0 - r:A

![](/files/OQtSPlWKMqH3cdIzrVT5)

We adapt the expression a bit by changing ' - v:' to ' - Ver.:'. And the same with r to Rev.

![](/files/zAwUVxD8hpPeX47Kfas3)

Under columns you will find all Project and Drawing Properties you can use for the expression. In addition, there are some more.

FileName = Is the file name of the drawing without the extension.

FileNameWithExtension = Is the file name with extension.

![](/files/zfNJHdchU9YMmuhYShon)

PlantTools\_PlantTools.PPM.Category = Contains the Category name under which the drawing is located.

PlantTools\_PlantTools.PPM.Version = Contains the latest Version of the drawing.

PlantTools\_PlantTools.PPM.Revision = Contains the latest Revision of the drawing.

PlantTools\_PlantTools.PPM.NodeText = Contains the node text shown in PlantProjectManager's tree

![](/files/HZu2X9c7adyQXcCJv82Z)

The first three Properties mentioned above are shown under the Details Tab and not the Properties Tab. We added those Properties, especially to be useable in a title block.

![](/files/yKqmjR6mr2Bb3kr5q5FH)

Revision\_Version = Is the latest version

Revision\_Revision = Is the latest revision

Revision\_VersionOrRevision\_Type = Is the latest Type of a Version OR Revision (either V or R)

Revision\_VersionOrRevision\_Number = Is the latest Number of a Version OR Revision

![](/files/HWAbvGLGAJYGYlgDbQuI)
