Notice: This website is an unofficial Microsoft Knowledge Base (hereinafter KB) archive and is intended to provide a reliable access to deleted content from Microsoft KB. All KB articles are owned by Microsoft Corporation. Read full disclaimer for more details.

How to disable shadow hWnds in Office 2013 applications


Summary

Microsoft Office 2013 applications use a custom frame in which a thin border is surrounded by four transparent Window handles (hWnds) that are used to render shadows. These hWnds are designed to make resizing the application easier. There is no user setting to disable these shadows. However, you can disable them (and re-enable them) by calling SendMessage or SendMessageTimeout together with the parameters in the code snippet that appears in the "Sample Code" section.

↑ Back to the top


More information

The transparent hWnds in Office 2013 applications that are used to render shadows use the class name MSO_BORDEREFFECT_WINDOW_CLASS. To show or hide the shadows in Office 2013 applications, you have to message the application’s window procedure (WndProc) by using SendMessage or SendMessageTimeout together with the following parameters:
  • To disable shadows: Msg = WM_USER + 0x0900, wParam = 117, and lParam = 0
  • To enable shadows: Msg = WM_USER + 0x0900, wParam = 117, and lParam = 1

Sample Code

The following function sends a message to an Office application’s hWnd to enable or disable the shadows around the application frame. (Some error checking is omitted for brevity.) 
#define WM_MSO (WM_USER + 0x0900) #define WM_MSO_WPARAM_OMFRAMEENABLESHADOW 117 #define WM_MSO_LPARAM_SHADOW_ENABLED 1 #define WM_MSO_LPARAM_SHADOW_DISABLED 0 void DisableShadows(HWND hwndOfficeApp) { SendMessage ( hwndOfficeApp, WM_MSO, WM_MSO_WPARAM_OMFRAMEENABLESHADOW, WM_MSO_LPARAM_SHADOW_DISABLED); } void EnableShadows(HWND hwndOfficeApp) { SendMessage ( hwndOfficeApp, WM_MSO, WM_MSO_WPARAM_OMFRAMEENABLESHADOW, WM_MSO_LPARAM_SHADOW_ENABLED); }

↑ Back to the top


Keywords: KB2821007

↑ Back to the top

Article Info
Article ID : 2821007
Revision : 1
Created on : 2/25/2013
Published on : 2/25/2013
Exists online : False
Views : 73