\(\renewcommand\AA{\unicode{x212B}}\)

Comment v1

../_images/Comment-v1_dlg.png

Comment dialog.

Summary

Adds a comment into the history record of a workspace

Properties

Name Direction Type Default Description
Workspace InOut Workspace Mandatory An InOut workspace that will store the new history comment
Text Input string Mandatory The text you want to store in the history of the workspace

Description

This simple algorithm just adds a comment record to the history of a workspace and is a simple way of annotating your workflow.

It does not change the data within a workspace in any way.

When outputting the history to Python this comment will be rendered as a python comment.

Usage

Example - Comment

ws = CreateSampleWorkspace()

Comment(ws,"The next algorithm is doing 1/ws")

# Print the result
print(ws.getHistory().lastAlgorithm().getPropertyValue("Text"))

Output:

The next algorithm is doing 1/ws

Categories: AlgorithmIndex | Utility\Workspaces

Source

C++ header: Comment.h

C++ source: Comment.cpp