2020-05-29 00:33:49 +08:00
|
|
|
|
namespace AntDesign.JsInterop
|
2019-12-12 22:52:01 +08:00
|
|
|
|
{
|
|
|
|
|
public class Element
|
|
|
|
|
{
|
2020-05-03 17:22:33 +08:00
|
|
|
|
public int absoluteTop { get; set; }
|
|
|
|
|
|
|
|
|
|
public int absoluteLeft { get; set; }
|
|
|
|
|
|
2019-12-12 22:52:01 +08:00
|
|
|
|
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; }
|
|
|
|
|
|
2020-10-25 19:21:36 +08:00
|
|
|
|
public double scrollLeft { get; set; }
|
2019-12-12 22:52:01 +08:00
|
|
|
|
|
2020-10-25 19:21:36 +08:00
|
|
|
|
public double scrollTop { get; set; }
|
2019-12-12 22:52:01 +08:00
|
|
|
|
|
|
|
|
|
public int clientTop { get; set; }
|
|
|
|
|
|
|
|
|
|
public int clientLeft { get; set; }
|
|
|
|
|
|
|
|
|
|
public int clientHeight { get; set; }
|
|
|
|
|
|
|
|
|
|
public int clientWidth { get; set; }
|
|
|
|
|
}
|
2020-05-03 17:22:33 +08:00
|
|
|
|
}
|