AxisMapUserToDevice Method |
Maps the user coordinates (userX, userY) to the device coordinates devXY.
Namespace: Imsl.Chart2DAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public abstract void MapUserToDevice(
double userX,
double userY,
int[] devXY
)
Public MustOverride Sub MapUserToDevice (
userX As Double,
userY As Double,
devXY As Integer()
)
public:
virtual void MapUserToDevice(
double userX,
double userY,
array<int>^ devXY
) abstract
abstract MapUserToDevice :
userX : float *
userY : float *
devXY : int[] -> unit
Parameters
- userX
- Type: SystemDouble
A double which specifies the user x-coordinate.
- userY
- Type: SystemDouble
A double which specifies the user y-coordinate.
- devXY
- Type: SystemInt32
An int[2] array on input, on output, the device coordinates.
See Also