hm_getpanelarea

Returns the x, y, width and height of the パネル領域.

Syntax

hm_getpanelarea

Type

HyperMesh Tcl GUI Command

Description

This command returns the x and y coordinates that define the upper left corner along with the width and height on the パネル領域.

The x and y values are relative to the upper left corner of the HyperMesh モデリングウィンドウ, not the entire screen.

Example

To get the パネル領域 coordinates and copy the パネル領域 to the clipboard:

foreach {x y w h} [hm_getpanelarea] {
    hm_windowtoclipboard $x $y $w $h
}

Errors

None.