Create new CiRect object
Syntax
'Declaration
Public Function CreateRect( _
ByVal As System.Integer, _
ByVal As System.Integer, _
ByVal As System.Integer, _
ByVal As System.Integer _
) As CiRect
'Usage
Dim instance As CiServer
Dim left As System.Integer
Dim top As System.Integer
Dim right As System.Integer
Dim bottom As System.Integer
Dim value As CiRect
value = instance.CreateRect(left, top, right, bottom)
public CiRect CreateRect(
System.int ,
System.int ,
System.int ,
System.int
)
public function CreateRect(
: System.Integer;
: System.Integer;
: System.Integer;
: System.Integer
): CiRect;
public function CreateRect(
: System.int,
: System.int,
: System.int,
: System.int
) : CiRect;
public:
CiRect^ CreateRect(
System.int ,
System.int ,
System.int ,
System.int
)
Parameters
- left
- top
- right
- bottom
See Also