\(\renewcommand\AA{\unicode{x212B}}\)
Comment dialog.¶
Table of Contents
Summary
See Also
Properties
Description
Usage
Source
Adds a comment into the history record of a workspace
RemoveWorkspaceHistory
Name
Direction
Type
Default
Workspace
InOut
Mandatory
An InOut workspace that will store the new history comment
Text
Input
string
The text you want to store in the history of the workspace
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.
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
C++ header: Comment.h
C++ source: Comment.cpp
Comment v1¶
Summary¶
Adds a comment into the history record of a workspace
See Also¶
RemoveWorkspaceHistory
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
Output:
Categories: AlgorithmIndex | Utility\Workspaces
Source¶
C++ header: Comment.h
C++ source: Comment.cpp