User187056398 posted
The Width property is type Unit, you can access it like this:
System.Web.UI.WebControls.Image MyImage = new System.Web.UI.WebControls.Image();
MyImage.Width = 100;
if (MyImage.Width.Value > 99)
Response.Write("Got it");
Unit can be in pixels, percentage, etc.