Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Retrieves the background color style of the specified style.
Syntax
const IMECOLORSTY* __cdecl PColorStyleBackFromIMEStyle(
_In_ const IMESTYLE *pimestyle
);
Parameters
-
pimestyle [in]
-
An IMESTYLE structure returned from PIMEStyleFromAttr function.
Return value
Pointer to an IMECOLORSTY structure representing the background color style.
Remarks
This function has no associated import library or header file; you must call it using the LoadLibrary and GetProcAddress functions.
The IMECOLORSTY structure is defined as follows:
typedef struct {
UINT colorId;
union {
COLORREF rgb;
UINT colorWin;
UINT colorSpec;
UINT colorFund;
};
} IMECOLORSTY;
Requirements
| Requirement | Value |
|---|---|
| DLL |
|
See also