PIMEStyleFromAttr 函式
擷取指定屬性的樣式。
語法
const IMESTYLE* __cdecl PIMEStyleFromAttr(
_In_ const UINT attr
);
參數
-
attr [in]
-
此參數可以是下列其中一個值。
-
IMESATTR_FIXEDCONVERTED (5)
-
IMESATTR_INPUT (0)
-
IMESATTR_INPUT_ERROR (4)
-
IMESATTR_MAX (5)
-
IMESATTR_MIN (0)
-
IMESATTR_TARGET_CONVERTED (1)
-
IMESATTR_TARGET_NOTCONVERTED (4)
-
傳回值
傳回代表色彩和非色彩設定 之 IMESTYLE 結構的指標。
備註
此函式沒有相關聯的匯入程式庫或標頭檔;您必須使用 LoadLibrary 和 GetProcAddress 函式呼叫它。
IMESTYLE結構的定義如下:
typedef struct {
union {
GRFSTY grfsty;
struct {
UINT fBold:1;
UINT fItalic:1;
UINT fUl:1;
UINT idUl:(sizeof(UINT) * 8 - 3);
};
};
union {
IMECOLORSTY colorstyText;
struct {
UINT colorIdText;
union {
COLORREF rgbText;
UINT colorWinText;
UINT colorSpecText;
UINT colorFundText;
};
};
};
union {
IMECOLORSTY colorstyBack;
struct {
UINT colorIdBack;
union {
COLORREF rgbBack;
UINT colorWinBack;
UINT colorSpecBack;
UINT colorFundBack;
};
};
};
union {
IMECOLORSTY colorstyUl;
struct {
UINT colorIdUl;
union {
COLORREF rgbUl;
UINT colorWinUl;
UINT colorSpecUl;
UINT colorFundUl;
};
};
};
} IMESTYLE;
規格需求
需求 | 值 |
---|---|
DLL |
|