mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-04 13:08:23 +08:00
34 lines
712 B
C#
34 lines
712 B
C#
namespace AntDesign.JsInterop
|
|
{
|
|
public class Element
|
|
{
|
|
public int absoluteTop { get; set; }
|
|
|
|
public int absoluteLeft { get; set; }
|
|
|
|
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; }
|
|
}
|
|
}
|