restviet.blogg.se

Convert all url strings to lower case in atext
Convert all url strings to lower case in atext








Generally speaking, this function is only used to judge the drag direction, not the drag distance. Rotation: Get the angle by which the widget has been rotated.Ĭursor.x: The X-axis coordinate of the position of the mouse pointer on the page, which is often used for the interaction of widgets following the mouse pointer.Ĭursor.y: The Y-axis coordinate of the position of the mouse pointer on the page, which is often used for the interaction of widgets following the mouse pointer.ĭragX: The horizontal dragged distance (1 millisecond).

Convert all url strings to lower case in atext full#

Opacity: the opacity of the widget, between 0-100%, the smaller the number, the greater the transparency, the larger the number, the less transparency, 0 is full transparency, 100% is completely opaque. For example This.bottom, Target.bottom, LVAR1.bottom. For example This.right, Target.right, LVAR1.right.īottom: Get the y-coordinate value of the lower border of the widget (the y-coordinate value of the widget + the height of the widget). Right: Get the x-coordinate value of the right border of the widget (the x-coordinate value of the widget + the width of the component). For example This.left, Target.left, LVAR1.left. Left: Get the x-coordinate value of the left border of the widget. For example This.top, Target.top, LVAR1.top. Top: Get the y-coordinate value of the upper border of the widget. Name: Get the name of the custom name of the widget, for example: This.name, Target.name, LVAR1.name. Text: Get the text of the object, for example: This.text, Target.text, LVAR1.text. ScrollY: Get the vertical scrolling distance of the object, usually a dynamic panel or a browser window. ScrollX: Get the horizontal scrolling distance of the object, usually a dynamic panel or a browser window.

convert all url strings to lower case in atext

Height: Get the width of the object, for example: This.height, Target.height, LVAR1.height, Window.height… Width: Get the width of the object, for example: This.width, Target.width, LVAR1.height, Window.height… Y: The value corresponding to the y-axis, for example: This.y, Target.y, Cursor.y, LVAR1.y… X: The coordinate value corresponding to the x-axis, for example: This.x, Target.x, Cursor.x, LVAR1.x. Target: refers to the target widget, which is generally used with other functions, such as Target.x, Target.y, Target.text, Target.width, This.height, to quickly obtain the value specified by the target widget. This: refers to the current widget, usually used with other functions, such as: This.x, This.y, This.text, This.width, This.height, you can quickly get the value specified by the current widget.








Convert all url strings to lower case in atext