MAGTRANSFORM structure (magnification.h)

Describes a transformation matrix that a magnifier control uses to magnify screen content.

Syntax

typedef struct tagMAGTRANSFORM {
  float v[3][3];
} MAGTRANSFORM, *PMAGTRANSFORM;

Members

v[3]

Type: float[3]

The transformation matrix.

Remarks

The transformation matrix is

 (n, 0.0, 0.0)

 (0.0, n, 0.0)

 (0.0, 0.0, 1.0)

where n is the magnification factor.

Requirements

Requirement Value
Minimum supported client Windows Vista [desktop apps only]
Minimum supported server Windows Server 2008 [desktop apps only]
Header magnification.h

See also

MagGetWindowTransform

MagSetWindowTransform

Reference