Update on 06/06/2017: Thanks for jdweng's help, it seems that CsQuery doesn't have the method to get the offSetHeight & offSetWidth of an element.
I's using CsQuery in C# to analyse static HTML files, and want to get the Height and Width of an
element.
But it seems the IDomObject of csquery doesn't have the method to get the Height or Width.
Note that the Height or Width does not listed in the Style attribute, so I couldn't get them via:
Int32 ElementWidth = Int32.Parse(myDomObject.Styles["width"].replace("px","").Trim());
Also, the HTML files are saved in local drive, not generated via aspx file.
Any suggestions would be appreciated.