Skip to main content

Display rotation

It is possible to rotate the display.

To rotate the display, you need to change the settings in the registry file:


[HKEY_LOCAL_MACHINE\SYSTEM\GDI\ROTATION]
"Angle"=dword:0 ;Valid values are 0,90,180, and 270. default:0
"BootupAngle"=dword:0 ;For Tegra only. Valid values are 0,90,180, and 270. default:0


To rotate the display in your application, you can use the function ChangeDisplaySettingsEx().

Here a few code snippets:


DEVMODE devMode;

devMode.dmSize= sizeof(DEVMODE);
devMode.dmFields = DM_DISPLAYORIENTATION;
devMode.dmDisplayOrientation = DMDO_90;

ChangeDisplaySettingsEx(NULL,&devMode,NULL,CDS_RESET,NULL);



The HW accelerated cursor on the PXA3xx Colibri modules is not compatible with rotation. (Some boundaries of the screen can not be reached) So when using the rotation feature you have to revert to the SW cursor. [Display Driver Registry Settings](/windows-ce/knowledge-base/display-driver-registry-settings)


Send Feedback!