Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

Unknown macro: {alias}

Name

workflow — Manage workflows

Syntax

workflow open filename
workflow close workflow
workflow execute workflow
workflow createtoolbar workflow
workflow hide workflow
workflow show workflow

Description

The workflow provides a Tcl interface to manage Geocap workflows. Typical tasks involve opening and executing a workflow programmatically.

Arguments

open filename

Unknown macro: {indent}

Open workflow from file. Returns a workflow as a tcl object. This workflow object is used in subsequent workflow calls to identity the workflow.

close workflow

Unknown macro: {indent}

Close workflow. The workflow argument is the object returned from the call to workflow open.

execute workflow

Unknown macro: {indent}

Execute workflow, starting from the first element that has execution enabled. The workflow argument is the object returned from the call to workflow open.

createtoolbar workflow

Unknown macro: {indent}

Create a toolbar associated with the given workflow. The toolbar provides controls for executing the workflow. This way you can manage the workflow execution without having the workflow view visible. This enables efficient use of screen area.

The workflow argument is the object returned from the call to workflow open.

show workflow

Unknown macro: {indent}

Show the workflow view. The view may have been hidden using the hide argument.

The workflow argument is the object returned from the call to workflow open.

hide workflow

Unknown macro: {indent}

Hide the workflow view. This makes the workflow view invisible. It does not close the workflow. Use the show argument to show the workflow view.

The workflow argument is the object returned from the call to workflow open.

Examples: Opening and executing a workflow

set mywflow [workflow open workflow.gwf]
workflow execute $mywflow

Unknown macro: {pagebreak}
  • No labels