mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-05 05:27:37 +08:00
29 lines
618 B
C#
29 lines
618 B
C#
namespace AntBlazor.JsInterop
|
|
{
|
|
public class Element
|
|
{
|
|
public int offsetTop { get; set; }
|
|
|
|
public int offsetLeft { get; set; }
|
|
|
|
public int offsetWidth { get; set; }
|
|
|
|
public int offsetHeight { get; set; }
|
|
|
|
public int scrollHeight { get; set; }
|
|
|
|
public int scrollWidth { get; set; }
|
|
|
|
public int scrollLeft { get; set; }
|
|
|
|
public int scrollTop { get; set; }
|
|
|
|
public int clientTop { get; set; }
|
|
|
|
public int clientLeft { get; set; }
|
|
|
|
public int clientHeight { get; set; }
|
|
|
|
public int clientWidth { get; set; }
|
|
}
|
|
} |