'Declaration Public ReadOnly Property Height As Double
'Usage Dim instance As ImGearDoubleRectangle Dim value As Double value = instance.Height
public double Height {get;}
public: __property double get_Height();
'Declaration Public ReadOnly Property Height As Double
'Usage Dim instance As ImGearDoubleRectangle Dim value As Double value = instance.Height
public double Height {get;}
public: __property double get_Height();
The Height and Width properties assume that the rectangle is being used with the endpoint-inclusive semantics. Using endpoint-inclusive semantics, a rectangle with left, top, right, and bottom coordinates all equal to 0 is one pixel wide and one pixel tall. So, for example, the Width property is calculated as Right - Left + 1. Sometimes rectangles are used with endpoint-exclusive semantics, in which the width of the rectangle should be calculated as Right - Left. In this case, the Width and Height properties should not be used.