RenderTargetBitmap.PixelWidth Property

Definition

Gets the width of the rendered bitmap in pixels.

public:
 property int PixelWidth { int get(); };
int PixelWidth();
public int PixelWidth { get; }
var int32 = renderTargetBitmap.pixelWidth;
Public ReadOnly Property PixelWidth As Integer

Property Value

Int32

int

The width of the rendered bitmap in pixels.

Remarks

Don't rely on this value prior to RenderAsync being called.

The maximum rendered size of a XAML visual tree is restricted by the maximum dimensions of a Microsoft DirectX texture; for more info see Resource Limits (). This resource limit can vary depending on the hardware where the app runs. Very large content that exceeds this limit might be scaled to fit. If scaling limits are applied in this way, the rendered size after scaling can be queried using the PixelWidth and PixelHeight properties. For example, a 10000 by 10000 pixel XAML visual tree might be scaled to 4096 by 4096 pixels, an example of a particular resource limit on 2D textures being applied.

Applies to