poIPost CopyResult

Copies a result definition from another definition.

Syntax

post_handle CopyResult id context notify

Application

HyperView Tcl Modify

Description

This command, valid only in HyperView - MultiCore profile, copies a result definition from another definition. It also returns the ID of the created result definition.

Inputs

id
The result definition label ID to copy from.
context
A string indicating the context of the result to copy (scalar, tensor, vector, iso).
notify
Set to 'true' to trigger an event to update the browser, otherwise 'false'. The default value is true.

Example

To copy the vector result with ID 5:

hwi OpenStack
hwi GetSessionHandle sess
sess GetProjectHandle proj
proj GetPageHandle page [proj GetActivePage]
page GetWindowHandle win [page GetActiveWindow]
win GetClientHandle client
client CopyResult 5 vector true
hwi CloseStack

Errors

Returns 0 if there was an error copying the result and sets an error condition on the session handle. See session_handle GetError.

Related Topics

See the HyperView - MultiCore APIs topic for additional information regarding the various Tcl/Tk commands that have been added for this workflow.