ant-design-blazor/components/core/JsInterop/Element.cs
zxyao 86942d7e18 fix: modal box randomly closed when multiple mouse click performed within it (#696) (#715)
* fix: invalid type mapping

* fix: frequent click results in modal self-closing (#696)

* fix(module: radio): the onclick event is repeatedly triggered
2020-10-25 19:21:36 +08:00

34 lines
718 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 double scrollLeft { get; set; }
public double scrollTop { get; set; }
public int clientTop { get; set; }
public int clientLeft { get; set; }
public int clientHeight { get; set; }
public int clientWidth { get; set; }
}
}