"floatingRulerWindow"

Sets the positioning behavior of the trend ruler pop-up.

Synopsis

floatingRulerWindow(bool)

setValue(trendObj, "floatingRulerWindow", bool floating);

getValue(trendObj, "floatingRulerWindow", bool &floating);

Parameter

Parameter Description
trendObj Trend for which the attributed should be get or set.
floating

TRUE = Pop-up is floating and can be freely moved

FALSE = Pop-up sticks to the trend ruler

Description

Defines if the ruler pop-up window panel is floating (default), having a titlebar which can be used to freely move the window or if the panel "sticks" to the trend ruler and is always displayed beside it without having a distinct titlebar. with this the pop-up cannot be moved freely but will react to a change of position of the trend ruler.

Example

Changes the "floatingRulerWindow" attribute to false and therefor disables the floating pop-up.

main()
{
  myTrend.floatingRulerWindow(FALSE);
}

Assignment

Trend