IsThemeBackgroundPartiallyTransparent function
Retrieves whether the background specified by the visual style has transparent pieces or alpha-blended pieces.
Syntax
BOOL IsThemeBackgroundPartiallyTransparent( _In_ HTHEME hTheme, _In_ int iPartId, _In_ int iStateId );
Parameters
- hTheme [in]
-
Type: HTHEME
Handle to a window's specified theme data. Use OpenThemeData to create an HTHEME.
- iPartId [in]
-
Type: int
Value of type int that specifies the part. See Parts and States.
- iStateId [in]
-
Type: int
Value of type int that specifies the state of the part. See Parts and States.
Return value
Type: BOOL
Returns one of the following values.
| Return code | Description |
|---|---|
|
The theme-specified background for a particular iPartId and iStateId has transparent pieces or alpha-blended pieces. |
|
The theme-specified background for a particular iPartId and iStateId does not have transparent pieces or alpha-blended pieces. |
Examples
Prior to calling DrawThemeBackground to draw the background image for a window, you may call IsThemeBackgroundPartiallyTransparent. This method determines whether DrawThemeParentBackground should be called to draw in backgrounds behind partially-transparent or alpha-blended child controls, and is demonstrated in the following example.
if (_hTheme) { if (IsThemeBackgroundPartiallyTransparent(_hTheme, BP_PUSHBUTTON, _iStateId)) { DrawThemeParentBackground(_hwnd, hdcPaint, prcPaint); } DrawThemeBackground(_hTheme, hdcPaint, BP_PUSHBUTTON, _iStateId, &rcClient, prcPaint); }
Requirements
|
Minimum supported client | Windows XP [desktop apps only] |
|---|---|
|
Minimum supported server | Windows Server 2003 [desktop apps only] |
|
Header |
|
|
Library |
|
|
DLL |
|
Send comments about this topic to Microsoft
Build date: 10/27/2012