struct{
DWORD rdSize;
WORD rdFunction;
WORD rdParm[];
}
rdSize
Specifies the record size, in words.
rdFunction
Specifies the GDI function number 0x0A32.
rdParm
Contains the following elements:
Element | Description |
y | Logical y-value of the starting point for the string. | |
x | Logical x-value of the starting point for the string. | |
count | Length of the string. | |
options | Rectangle type. An application should use the AND (&) operator to determine if this element has either the ETO_CLIPPED or ETO_OPAQUE bits set. Using the equality operator (==) is discouraged in this case, because some applications set additional bits in the wOptions parameter of the rectangular region in which the ExtTextOut function writes text. | |
rectangle | RECT structure defining the rectangular region in which the ExtTextOut function writes text. This element does not exist if the options element is zero. (For a description of the RECT structure, see the Microsoft Windows Programmer's Reference, Volume 3.) | |
, | ||
string | Byte array containing the string. The array is ((count + 1) >> 1) words long. | |
dxarray | Optional word array of intercharacter distances. |