A rectangle with floating point dimensions.
Syntax
|
|
|
VB.NET
|
Structure SftRectFloat
Dim left As Single
|
The location of the top/left corner of the rectangle
|
Dim top As Single
|
The location of the top/left corner of the rectangle
|
Dim width As Single
|
The width of the rectangle
|
Dim height As Single
|
The height of the rectangle
|
End Structure
|
|
|
|
VB
|
Type SftRectFloat
left As Single
|
The location of the top/left corner of the rectangle
|
top As Single
|
The location of the top/left corner of the rectangle
|
width As Single
|
The width of the rectangle
|
height As Single
|
The height of the rectangle
|
End Type
|
|
|
|
C#.NET
|
struct SftRectFloat {
float left;
|
The location of the top/left corner of the rectangle
|
float top;
|
The location of the top/left corner of the rectangle
|
float width;
|
The width of the rectangle
|
float height;
|
The height of the rectangle
|
};
|
|
|
|
VC++
|
struct SftRectFloat {
float left;
|
The location of the top/left corner of the rectangle
|
float top;
|
The location of the top/left corner of the rectangle
|
float width;
|
The width of the rectangle
|
float height;
|
The height of the rectangle
|
};
|
|
|
|
C
|
struct SftRectFloat {
float left;
|
The location of the top/left corner of the rectangle
|
float top;
|
The location of the top/left corner of the rectangle
|
float width;
|
The width of the rectangle
|
float height;
|
The height of the rectangle
|
};
|
|
|
|
Delphi
|
SftRectFloat = record
left : Single;
|
The location of the top/left corner of the rectangle
|
top : Single;
|
The location of the top/left corner of the rectangle
|
width : Single;
|
The width of the rectangle
|
height : Single;
|
The height of the rectangle
|
end;
|
Members
left
Defines the location of the top/left corner of the
rectangle.
top
Defines the location of the top/left corner of the
rectangle.
width
Defines the width of the rectangle.
height
Defines the height of the rectangle.
Feedback / comments / error reports for this topic
© 2004 - Softel vdm, Inc. - www.windowscontrols.com