Freigeben über


LineDisplayWindow.TryDisplayStorageFileBitmapAtPointAsync Methode

Definition

Überlädt

TryDisplayStorageFileBitmapAtPointAsync(StorageFile, Point)

Versucht, eine Bitmap aus einer Speicherdatei an einem bestimmten Punkt asynchron anzuzeigen.

TryDisplayStorageFileBitmapAtPointAsync(StorageFile, Point, Int32)

Versucht, eine Bitmap aus einer Speicherdatei an einem bestimmten Punkt asynchron anzuzeigen, skaliert auf eine bestimmte Breite.

TryDisplayStorageFileBitmapAtPointAsync(StorageFile, Point)

Versucht, eine Bitmap aus einer Speicherdatei an einem bestimmten Punkt asynchron anzuzeigen.

public:
 virtual IAsyncOperation<bool> ^ TryDisplayStorageFileBitmapAtPointAsync(StorageFile ^ bitmap, Point offsetInPixels) = TryDisplayStorageFileBitmapAtPointAsync;
/// [Windows.Foundation.Metadata.Overload("TryDisplayStorageFileBitmapAtPointAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<bool> TryDisplayStorageFileBitmapAtPointAsync(StorageFile const& bitmap, Point const& offsetInPixels);
[Windows.Foundation.Metadata.Overload("TryDisplayStorageFileBitmapAtPointAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<bool> TryDisplayStorageFileBitmapAtPointAsync(StorageFile bitmap, Point offsetInPixels);
function tryDisplayStorageFileBitmapAtPointAsync(bitmap, offsetInPixels)
Public Function TryDisplayStorageFileBitmapAtPointAsync (bitmap As StorageFile, offsetInPixels As Point) As IAsyncOperation(Of Boolean)

Parameter

bitmap
StorageFile

Die anzuzeigende Bitmap.

offsetInPixels
Point

Die Anzahl der Pixel, die die Bitmapanzeige von der oberen linken Ecke des Bildschirms versetzt werden soll, {0,0}.

Gibt zurück

Gibt True zurück, wenn die Bitmap erfolgreich angezeigt wurde. andernfalls False.

Attribute

Windows-Anforderungen

Gerätefamilie
Windows 10 Fall Creators Update (eingeführt in 10.0.16299.0)
API contract
Windows.Foundation.UniversalApiContract (eingeführt in v5.0)

Hinweise

Wenn der LineDisplayCapabilities.CanDisplayBitmaps-Wert False ist, schlägt diese Methode fehl.

Gilt für:

TryDisplayStorageFileBitmapAtPointAsync(StorageFile, Point, Int32)

Versucht, eine Bitmap aus einer Speicherdatei an einem bestimmten Punkt asynchron anzuzeigen, skaliert auf eine bestimmte Breite.

public:
 virtual IAsyncOperation<bool> ^ TryDisplayStorageFileBitmapAtPointAsync(StorageFile ^ bitmap, Point offsetInPixels, int widthInPixels) = TryDisplayStorageFileBitmapAtPointAsync;
/// [Windows.Foundation.Metadata.Overload("TryDisplayStorageFileBitmapAtPointWithWidthAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<bool> TryDisplayStorageFileBitmapAtPointAsync(StorageFile const& bitmap, Point const& offsetInPixels, int const& widthInPixels);
[Windows.Foundation.Metadata.Overload("TryDisplayStorageFileBitmapAtPointWithWidthAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<bool> TryDisplayStorageFileBitmapAtPointAsync(StorageFile bitmap, Point offsetInPixels, int widthInPixels);
function tryDisplayStorageFileBitmapAtPointAsync(bitmap, offsetInPixels, widthInPixels)
Public Function TryDisplayStorageFileBitmapAtPointAsync (bitmap As StorageFile, offsetInPixels As Point, widthInPixels As Integer) As IAsyncOperation(Of Boolean)

Parameter

bitmap
StorageFile

Die anzuzeigende Bitmap.

offsetInPixels
Point

Die Anzahl der Pixel, die die Bitmapanzeige von der oberen linken Ecke des Bildschirms versetzt werden soll, {0,0}.

widthInPixels
Int32

int

Die gewünschte Breite der Bitmap. Ein Wert von 0 Pixel zeigt die Bitmap mit einem Pixel pro Bildschirmpunkt (nicht skaliert) an.

Gibt zurück

Gibt True zurück, wenn die Bitmap erfolgreich angezeigt wurde. andernfalls False.

Attribute

Windows-Anforderungen

Gerätefamilie
Windows 10 Fall Creators Update (eingeführt in 10.0.16299.0)
API contract
Windows.Foundation.UniversalApiContract (eingeführt in v5.0)

Hinweise

Wenn der LineDisplayCapabilities.CanDisplayBitmaps-Wert False ist, schlägt diese Methode fehl.

Wenn der angegebene widthInPixels-Wert größer als ClaimedLineDisplay.MaxBitmapSizeInPixels ist, schlägt diese Methode fehl.

Gilt für: