AXISINFO structure
The AXISINFO structure contains information about an axis of a multiple master font.
Syntax
typedef struct tagAXISINFO { LONG axMinValue; LONG axMaxValue; TCHAR axAxisName[MM_MAX_AXES_NAMELEN]; } AXISINFO, *PAXISINFO;
Members
- axMinValue
-
The minimum value for this axis.
- axMaxValue
-
The maximum value for this axis.
- axAxisName
-
The name of the axis, specified as an array of characters.
Remarks
The AXISINFO structure contains the name of an axis in a multiple master font and also the minimum and maximum possible values for the axis. The length of the name is MM_MAX_AXES_NAMELEN, which equals 16. An application queries these values before setting its desired values in the DESIGNVECTOR array.
The PostScript Open Type Font does not support multiple master functionality.
For the ANSI version of this structure, axAxisName must be an array of bytes.
Requirements
|
Minimum supported client |
Windows 2000 Professional [desktop apps only] |
|---|---|
|
Minimum supported server |
Windows 2000 Server [desktop apps only] |
|
Header |
|
|
Unicode and ANSI names |
AXISINFOW (Unicode) and AXISINFOA (ANSI) |
See also