ant-design-blazor/components/core/JsInterop/Element.cs

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