POINTF
The POINTF
structure is used in the IOleControlSite::TransformCoords method to
convert between container units, expressed in floating point, and control
units, expressed in HIMETRIC. The POINTF structure specifically holds
the floating point container units. Controls do not attempt to interpret either
value in the structure.
typedef struct tagPOINTF
{
float x;
float y;
} POINTF;
Members
x
The
x-coordinates of the point in units that the container finds convenient.
y
The y
coordinates of the point in units that the container finds convenient.
See Also