Offset Method (ImGearPoint)
In This Topic
Shifts the points coordinates by the specified coordinateX
and coordinateY
values.
Syntax
'Declaration
Public Sub Offset( _
ByVal As Integer, _
ByVal As Integer _
)
'Usage
Dim instance As ImGearPoint
Dim offsetX As Integer
Dim offsetY As Integer
instance.Offset(offsetX, offsetY)
public void Offset(
int ,
int
)
public: void Offset(
int ,
int
)
public:
void Offset(
int ,
int
)
Parameters
- offsetX
- The x coordinate value.
- offsetY
- The y coordinate value.
See Also