ant-design-blazor/components/core/JsInterop/Element.cs
2020-05-29 00:33:49 +08:00

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; }
}
}