[VB] | Public Sub move(xOffset As Double, yOffset As Double [, bgColor As Integer [, filter As Integer [, blur As Double ]]]) |
[C#] | public void move(double xOffset, double yOffset [, int bgColor [, int filter [, double blur ]]]); |
ChartDirector 5.1 (.NET Edition)
DrawArea.move
Usage
[VB] | Public Sub move(xOffset As Double, yOffset As Double [, bgColor As Integer [, filter As Integer [, blur As Double ]]]) |
[C#] | public void move(double xOffset, double yOffset [, int bgColor [, int filter [, double blur ]]]); |
Description
Arguments
Argument | Default | Description |
---|---|---|
xOffset | (Mandatory) | The pixel offset to move towards the left. |
yOffset | (Mandatory) | The pixel offset to move towards the bottom. |
bgColor | FFFFFF | The background color used to fill the space left after moving. |
filter | LinearFilter | The filter to use for re-sampling. (Only applies for fractional pixel offsets.) |
blur | 1 | The blur factor to use for re-sampling. (Only applies for fractional pixel offsets.) |
Return Value