Partager via


LineDisplayWindow.TryDisplayStorageFileBitmapAtPointAsync Méthode

Définition

Surcharges

TryDisplayStorageFileBitmapAtPointAsync(StorageFile, Point)

Tente d’afficher de manière asynchrone une bitmap à partir d’un fichier de stockage à un point particulier.

TryDisplayStorageFileBitmapAtPointAsync(StorageFile, Point, Int32)

Tente d’afficher de manière asynchrone une bitmap à partir d’un fichier de stockage à un point particulier, mis à l’échelle à une largeur particulière.

TryDisplayStorageFileBitmapAtPointAsync(StorageFile, Point)

Tente d’afficher de manière asynchrone une bitmap à partir d’un fichier de stockage à un point particulier.

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)

Paramètres

bitmap
StorageFile

Bitmap à afficher.

offsetInPixels
Point

Nombre de pixels à décaler l’affichage bitmap à partir du coin supérieur gauche de l’écran, {0,0}.

Retours

Retourne true si la bitmap a été correctement affichée ; sinon, False.

Attributs

Configuration requise pour Windows

Famille d’appareils
Windows 10 Fall Creators Update (introduit dans 10.0.16299.0)
API contract
Windows.Foundation.UniversalApiContract (introduit dans v5.0)

Remarques

Si la valeur LineDisplayCapabilities.CanDisplayBitmaps est False, cette méthode échoue.

S’applique à

TryDisplayStorageFileBitmapAtPointAsync(StorageFile, Point, Int32)

Tente d’afficher de manière asynchrone une bitmap à partir d’un fichier de stockage à un point particulier, mis à l’échelle à une largeur particulière.

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)

Paramètres

bitmap
StorageFile

Bitmap à afficher.

offsetInPixels
Point

Nombre de pixels à décaler l’affichage bitmap à partir du coin supérieur gauche de l’écran, {0,0}.

widthInPixels
Int32

int

Largeur souhaitée de la bitmap. Une valeur de 0 pixels affiche la bitmap à un pixel par point d’écran (non mis à l’échelle).

Retours

Retourne true si la bitmap a été correctement affichée ; sinon, False.

Attributs

Configuration requise pour Windows

Famille d’appareils
Windows 10 Fall Creators Update (introduit dans 10.0.16299.0)
API contract
Windows.Foundation.UniversalApiContract (introduit dans v5.0)

Remarques

Si la valeur LineDisplayCapabilities.CanDisplayBitmaps est False, cette méthode échoue.

Si la valeur widthInPixels fournie est supérieure à ClaimedLineDisplay.MaxBitmapSizeInPixels, cette méthode échoue.

S’applique à