| FS_RECTF(Single, Single, Single, Single) Constructor |
Initializes a new instance of the
FS_RECTF structure with the specified location and size.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.89.2704
Syntax public FS_RECTF(
float l,
float t,
float r,
float b
)
Public Sub New (
l As Single,
t As Single,
r As Single,
b As Single
)
public:
FS_RECTF(
float l,
float t,
float r,
float b
)
new :
l : float32 *
t : float32 *
r : float32 *
b : float32 -> FS_RECTF
public FS_RECTF(
float l,
float t,
float r,
float b
)
Patagames.Pdf.FS_RECTF = function(l, t, r, b);
Parameters
- l Single
- The x-coordinate of the left edge of this FS_RECTF structure.
- t Single
- The y-coordinate of the top edge of this FS_RECTF structure.
- r Single
- The x-coordinate of the right edge of this FS_RECTF structure.
- b Single
- The y-coordinate of the bottom edge of this FS_RECTF structure.
See Also