Share via


DisplayModeInfo.PhysicalPresentationRate Property

Definition

Gets or sets the actual physical rate at which the display is scanning out pixels (when refresh rates are being virtualized).

DisplayPresentationRate PhysicalPresentationRate();
public DisplayPresentationRate PhysicalPresentationRate { get; }
var displayPresentationRate = displayModeInfo.physicalPresentationRate;
Public ReadOnly Property PhysicalPresentationRate As DisplayPresentationRate

Property Value

A DisplayPresentationRate object representing the actual physical rate at which the display is scanning out pixels.

Windows requirements

Device family
Windows 11 (introduced in 10.0.22000.0)
API contract
Windows.Foundation.UniversalApiContract (introduced in v14.0)

Remarks

Starting with Windows 11, DisplayPresentationRate is virtualized if the physical display is capable of virtualizing refresh rates, and doesn't necessarily represent the actual pixel rate on the wire.

To determine the actual physical rate at which the display is scanning out pixels, use the flag DisplayManagerOptions::VirtualRefreshRateAware while creating your DisplayManager and DisplayPath objects.

If your application's DisplayManager isn't virtual refresh rate aware, then it won't be able to access PhysicalPresentationRate.

Applies to