Description
Returns the width, using the object supplied as parameter.
Syntax
Dim width as Integer = Width(obj) |
param
a generic object, that has a width attribute. Typically, it's an img object.
Code
<Extension()> _
Public Function Width(ByVal obj As IGenericAttrObj) As Integer
Return GetInteger(obj, "width")
End Function
See also