Partager via


ClaimedLineDisplay.TryStoreStorageFileBitmapAsync Méthode

Définition

Surcharges

TryStoreStorageFileBitmapAsync(StorageFile, LineDisplayHorizontalAlignment, LineDisplayVerticalAlignment)

Tente de stocker de manière asynchrone une image bitmap à partir d’un StorageFile pour un affichage ultérieur sur le périphérique d’affichage de ligne.

TryStoreStorageFileBitmapAsync(StorageFile, LineDisplayHorizontalAlignment, LineDisplayVerticalAlignment, Int32)

Tente de stocker de manière asynchrone une image bitmap à partir d’un StorageFile pour un affichage ultérieur sur le périphérique d’affichage de ligne.

TryStoreStorageFileBitmapAsync(StorageFile)

Tente de stocker de manière asynchrone une image bitmap à partir d’un StorageFile pour un affichage ultérieur sur le périphérique d’affichage de ligne.

TryStoreStorageFileBitmapAsync(StorageFile, LineDisplayHorizontalAlignment, LineDisplayVerticalAlignment)

Tente de stocker de manière asynchrone une image bitmap à partir d’un StorageFile pour un affichage ultérieur sur le périphérique d’affichage de ligne.

public:
 virtual IAsyncOperation<LineDisplayStoredBitmap ^> ^ TryStoreStorageFileBitmapAsync(StorageFile ^ bitmap, LineDisplayHorizontalAlignment horizontalAlignment, LineDisplayVerticalAlignment verticalAlignment) = TryStoreStorageFileBitmapAsync;
/// [Windows.Foundation.Metadata.Overload("TryStoreStorageFileBitmapWithAlignmentAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<LineDisplayStoredBitmap> TryStoreStorageFileBitmapAsync(StorageFile const& bitmap, LineDisplayHorizontalAlignment const& horizontalAlignment, LineDisplayVerticalAlignment const& verticalAlignment);
[Windows.Foundation.Metadata.Overload("TryStoreStorageFileBitmapWithAlignmentAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<LineDisplayStoredBitmap> TryStoreStorageFileBitmapAsync(StorageFile bitmap, LineDisplayHorizontalAlignment horizontalAlignment, LineDisplayVerticalAlignment verticalAlignment);
function tryStoreStorageFileBitmapAsync(bitmap, horizontalAlignment, verticalAlignment)
Public Function TryStoreStorageFileBitmapAsync (bitmap As StorageFile, horizontalAlignment As LineDisplayHorizontalAlignment, verticalAlignment As LineDisplayVerticalAlignment) As IAsyncOperation(Of LineDisplayStoredBitmap)

Paramètres

bitmap
StorageFile

StorageFile qui représente un fichier bitmap local. Tous les affichages de lignes prennent en charge les bitmaps Windows non compressées en noir et blanc. Vérifiez les spécifications de l’appareil pour d’autres formats pris en charge.

horizontalAlignment
LineDisplayHorizontalAlignment

Détermine la façon dont la bitmap sera alignée horizontalement par rapport à sa cellule de caractère d’origine.

verticalAlignment
LineDisplayVerticalAlignment

Détermine comment la bitmap sera alignée verticalement par rapport à sa cellule de caractère d’origine.

Retours

True si la bitmap est correctement stockée, False si une défaillance se produit.

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

  • Le fichier StorageFile bitmap doit être sauvegardé par un fichier local. Si elle est créée à partir d’un flux, d’un URI ou d’une autre source, cette méthode lève une exception.
  • L’appel de cette méthode lorsque LineDisplayCapabiliaties.CanDisplayBitmaps a la valeur False entraîne une exception.
  • Jusqu’à 100 bitmaps peuvent être stockées à l’aide de cette méthode. La tentative de stockage de plus de 100 bitmaps entraîne une exception. Supprimez les bitmaps inutilisées à l’aide de LineDisplayStoredBitmap.TryDeleteAsync.

Voir aussi

S’applique à

TryStoreStorageFileBitmapAsync(StorageFile, LineDisplayHorizontalAlignment, LineDisplayVerticalAlignment, Int32)

Tente de stocker de manière asynchrone une image bitmap à partir d’un StorageFile pour un affichage ultérieur sur le périphérique d’affichage de ligne.

public:
 virtual IAsyncOperation<LineDisplayStoredBitmap ^> ^ TryStoreStorageFileBitmapAsync(StorageFile ^ bitmap, LineDisplayHorizontalAlignment horizontalAlignment, LineDisplayVerticalAlignment verticalAlignment, int widthInPixels) = TryStoreStorageFileBitmapAsync;
/// [Windows.Foundation.Metadata.Overload("TryStoreStorageFileBitmapWithAlignmentAndWidthAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<LineDisplayStoredBitmap> TryStoreStorageFileBitmapAsync(StorageFile const& bitmap, LineDisplayHorizontalAlignment const& horizontalAlignment, LineDisplayVerticalAlignment const& verticalAlignment, int const& widthInPixels);
[Windows.Foundation.Metadata.Overload("TryStoreStorageFileBitmapWithAlignmentAndWidthAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<LineDisplayStoredBitmap> TryStoreStorageFileBitmapAsync(StorageFile bitmap, LineDisplayHorizontalAlignment horizontalAlignment, LineDisplayVerticalAlignment verticalAlignment, int widthInPixels);
function tryStoreStorageFileBitmapAsync(bitmap, horizontalAlignment, verticalAlignment, widthInPixels)
Public Function TryStoreStorageFileBitmapAsync (bitmap As StorageFile, horizontalAlignment As LineDisplayHorizontalAlignment, verticalAlignment As LineDisplayVerticalAlignment, widthInPixels As Integer) As IAsyncOperation(Of LineDisplayStoredBitmap)

Paramètres

bitmap
StorageFile

StorageFile qui représente un fichier bitmap local. Tous les affichages de lignes prennent en charge les bitmaps Windows non compressées en noir et blanc. Vérifiez les spécifications de l’appareil pour d’autres formats pris en charge.

horizontalAlignment
LineDisplayHorizontalAlignment

Détermine la façon dont la bitmap sera alignée horizontalement par rapport à sa cellule de caractère d’origine.

verticalAlignment
LineDisplayVerticalAlignment

Détermine comment la bitmap sera alignée verticalement par rapport à sa cellule de caractère d’origine.

widthInPixels
Int32

int

Largeur de bitmap affichée en pixels, si elle est différente de la largeur bitmap d’origine. La hauteur sera calculée proportionnellement.

Retours

True si la bitmap est correctement stockée, False si une défaillance se produit.

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

Voir aussi

S’applique à

TryStoreStorageFileBitmapAsync(StorageFile)

Tente de stocker de manière asynchrone une image bitmap à partir d’un StorageFile pour un affichage ultérieur sur le périphérique d’affichage de ligne.

public:
 virtual IAsyncOperation<LineDisplayStoredBitmap ^> ^ TryStoreStorageFileBitmapAsync(StorageFile ^ bitmap) = TryStoreStorageFileBitmapAsync;
/// [Windows.Foundation.Metadata.Overload("TryStoreStorageFileBitmapAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<LineDisplayStoredBitmap> TryStoreStorageFileBitmapAsync(StorageFile const& bitmap);
[Windows.Foundation.Metadata.Overload("TryStoreStorageFileBitmapAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<LineDisplayStoredBitmap> TryStoreStorageFileBitmapAsync(StorageFile bitmap);
function tryStoreStorageFileBitmapAsync(bitmap)
Public Function TryStoreStorageFileBitmapAsync (bitmap As StorageFile) As IAsyncOperation(Of LineDisplayStoredBitmap)

Paramètres

bitmap
StorageFile

StorageFile qui représente un fichier bitmap local. Tous les affichages de lignes prennent en charge les bitmaps Windows non compressées en noir et blanc. Vérifiez les spécifications de l’appareil pour d’autres formats pris en charge.

Retours

True si la bitmap est correctement stockée, False si une défaillance se produit.

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

  • Le fichier StorageFile bitmap doit être sauvegardé par un fichier local. Si elle est créée à partir d’un flux, d’un URI ou d’une autre source, cette méthode lève une exception.
  • L’appel de cette méthode lorsque LineDisplayCapabiliaties.CanDisplayBitmaps a la valeur False entraîne une exception.
  • Jusqu’à 100 bitmaps peuvent être stockées à l’aide de cette méthode. La tentative de stockage de plus de 100 bitmaps entraîne une exception. Supprimez les bitmaps inutilisées à l’aide de LineDisplayStoredBitmap.TryDeleteAsync.

Voir aussi

S’applique à