ASPxClientUtils.GetAbsoluteY(element) Method
Gets the y-coordinate of the specified element’s top left corner relative to the client area of the window, excluding scroll bars.
Declaration
static GetAbsoluteY(
element: any
): number
Parameters
Name | Type | Description |
---|---|---|
element | any | An object identifying the HTML element whose position should be obtained. |
Returns
Type | Description |
---|---|
number | The specified element’s y-coordinate, in pixels. |
Remarks
Use the GetAbsoluteY and ASPxClientUtils.GetAbsoluteX methods to obtain the absolute position of a specific element’s top-left corner regardless of scrolling applied to the window’s client region. These are universal methods which can be used under all supported browsers.
See Also