pltICursor SetLineVisibility

Sets the cursor line’s visibility.

Syntax

pltICursor_handle SetLineVisibility state

Application

Tcl Modify

Description

This command sets the cursor line’s visibility.

Inputs

state
true
If you want the cursor line to be visible
false
To make the cursor line invisible.

Example

hwi GetSessionHandle sess;
sess GetProjectHandle proj;
proj GetPageHandle p1 1;
p1 GetWindowHandle w1 1;
w1 GetClientHandle plot;
plot GetCurveHandle c1 1;
c1 GetCursorHandle cur 1;
cur SetLineVisibility true;
cur Draw;

Errors

Success (0) or an error message is returned.

Keywords

Tcl

Cursor

Modify