vidIVideo GetMeasurePoint2Y
Returns the y value of the first point in the indexed measure.
Syntax
vidIVideo_handle GetMeasurePoint2Y index
Application
HyperWorks Tcl Query
Description
This command returns the y value of the second point in the indexed measure line.
Inputs
- index
- The index of the measure to be queried.
Example
hwi GetSessionHandle sess;
sess GetProjectHandle proj;
proj GetPageHandle p1 1;
p1 GetWindowHandle w1 1;
w1 GetClientHandle Video;
Video AddMeasure static;
Video SetMeasurePoint1X 1 400;
Video SetMeasurePoint1Y 1 68;
Video SetMeasurePoint2X 1 600;
Video SetMeasurePoint2Y 1 68;
Video DrawMeasure;
Video GetMeasurePoint2Y 1;
Errors
Success (the y value) or an error message is returned.
Keywords
- HyperWorks
- Tcl
- Video
- Query