LineDisplayWindow.TryDisplayStorageFileBitmapAtCursorAsync メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
TryDisplayStorageFileBitmapAtCursorAsync(StorageFile, LineDisplayHorizontalAlignment, LineDisplayVerticalAlignment, Int32) |
特定の幅で、現在のカーソル位置にあるストレージ ファイルからビットマップを非同期的に表示しようとします。 |
TryDisplayStorageFileBitmapAtCursorAsync(StorageFile, LineDisplayHorizontalAlignment, LineDisplayVerticalAlignment) |
現在のカーソル位置にあるストレージ ファイルからビットマップを非同期的に表示しようとします。 |
TryDisplayStorageFileBitmapAtCursorAsync(StorageFile) |
現在のカーソル位置にあるストレージ ファイルからビットマップを非同期的に表示しようとします。 |
TryDisplayStorageFileBitmapAtCursorAsync(StorageFile, LineDisplayHorizontalAlignment, LineDisplayVerticalAlignment, Int32)
特定の幅で、現在のカーソル位置にあるストレージ ファイルからビットマップを非同期的に表示しようとします。
public:
virtual IAsyncOperation<bool> ^ TryDisplayStorageFileBitmapAtCursorAsync(StorageFile ^ bitmap, LineDisplayHorizontalAlignment horizontalAlignment, LineDisplayVerticalAlignment verticalAlignment, int widthInPixels) = TryDisplayStorageFileBitmapAtCursorAsync;
/// [Windows.Foundation.Metadata.Overload("TryDisplayStorageFileBitmapAtCursorWithAlignmentAndWidthAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<bool> TryDisplayStorageFileBitmapAtCursorAsync(StorageFile const& bitmap, LineDisplayHorizontalAlignment const& horizontalAlignment, LineDisplayVerticalAlignment const& verticalAlignment, int const& widthInPixels);
[Windows.Foundation.Metadata.Overload("TryDisplayStorageFileBitmapAtCursorWithAlignmentAndWidthAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<bool> TryDisplayStorageFileBitmapAtCursorAsync(StorageFile bitmap, LineDisplayHorizontalAlignment horizontalAlignment, LineDisplayVerticalAlignment verticalAlignment, int widthInPixels);
function tryDisplayStorageFileBitmapAtCursorAsync(bitmap, horizontalAlignment, verticalAlignment, widthInPixels)
Public Function TryDisplayStorageFileBitmapAtCursorAsync (bitmap As StorageFile, horizontalAlignment As LineDisplayHorizontalAlignment, verticalAlignment As LineDisplayVerticalAlignment, widthInPixels As Integer) As IAsyncOperation(Of Boolean)
パラメーター
- bitmap
- StorageFile
表示するビットマップ。
- horizontalAlignment
- LineDisplayHorizontalAlignment
現在のテキスト文字位置に対するビットマップの水平方向の配置。
- verticalAlignment
- LineDisplayVerticalAlignment
現在のテキスト文字位置に対するビットマップの垂直方向の配置。
- widthInPixels
-
Int32
int
ビットマップの幅。 0 ピクセルの値を指定すると、画面ドットごとに 1 ピクセル (スケールなし) でビットマップが表示されます。
戻り値
ビットマップが正常に表示された場合は True を返します。それ以外の場合は False。
- 属性
Windows の要件
デバイス ファミリ |
Windows 10 Fall Creators Update (10.0.16299.0 で導入)
|
API contract |
Windows.Foundation.UniversalApiContract (v5.0 で導入)
|
注釈
LineDisplayCapabilities.CanDisplayBitmaps 値が False の場合、このメソッドは失敗します。
指定された widthInPixels 値が ClaimedLineDisplay.MaxBitmapSizeInPixels より大きい場合、このメソッドは失敗します。
適用対象
TryDisplayStorageFileBitmapAtCursorAsync(StorageFile, LineDisplayHorizontalAlignment, LineDisplayVerticalAlignment)
現在のカーソル位置にあるストレージ ファイルからビットマップを非同期的に表示しようとします。
public:
virtual IAsyncOperation<bool> ^ TryDisplayStorageFileBitmapAtCursorAsync(StorageFile ^ bitmap, LineDisplayHorizontalAlignment horizontalAlignment, LineDisplayVerticalAlignment verticalAlignment) = TryDisplayStorageFileBitmapAtCursorAsync;
/// [Windows.Foundation.Metadata.Overload("TryDisplayStorageFileBitmapAtCursorWithAlignmentAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<bool> TryDisplayStorageFileBitmapAtCursorAsync(StorageFile const& bitmap, LineDisplayHorizontalAlignment const& horizontalAlignment, LineDisplayVerticalAlignment const& verticalAlignment);
[Windows.Foundation.Metadata.Overload("TryDisplayStorageFileBitmapAtCursorWithAlignmentAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<bool> TryDisplayStorageFileBitmapAtCursorAsync(StorageFile bitmap, LineDisplayHorizontalAlignment horizontalAlignment, LineDisplayVerticalAlignment verticalAlignment);
function tryDisplayStorageFileBitmapAtCursorAsync(bitmap, horizontalAlignment, verticalAlignment)
Public Function TryDisplayStorageFileBitmapAtCursorAsync (bitmap As StorageFile, horizontalAlignment As LineDisplayHorizontalAlignment, verticalAlignment As LineDisplayVerticalAlignment) As IAsyncOperation(Of Boolean)
パラメーター
- bitmap
- StorageFile
表示するビットマップ。
- horizontalAlignment
- LineDisplayHorizontalAlignment
現在のテキスト文字位置に対するビットマップの水平方向の配置。
- verticalAlignment
- LineDisplayVerticalAlignment
現在のテキスト文字位置に対するビットマップの垂直方向の配置。
戻り値
ビットマップが正常に表示された場合は True を返します。それ以外の場合は False。
- 属性
Windows の要件
デバイス ファミリ |
Windows 10 Fall Creators Update (10.0.16299.0 で導入)
|
API contract |
Windows.Foundation.UniversalApiContract (v5.0 で導入)
|
注釈
LineDisplayCapabilities.CanDisplayBitmaps 値が False の場合、このメソッドは失敗します。
適用対象
TryDisplayStorageFileBitmapAtCursorAsync(StorageFile)
現在のカーソル位置にあるストレージ ファイルからビットマップを非同期的に表示しようとします。
public:
virtual IAsyncOperation<bool> ^ TryDisplayStorageFileBitmapAtCursorAsync(StorageFile ^ bitmap) = TryDisplayStorageFileBitmapAtCursorAsync;
/// [Windows.Foundation.Metadata.Overload("TryDisplayStorageFileBitmapAtCursorAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<bool> TryDisplayStorageFileBitmapAtCursorAsync(StorageFile const& bitmap);
[Windows.Foundation.Metadata.Overload("TryDisplayStorageFileBitmapAtCursorAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<bool> TryDisplayStorageFileBitmapAtCursorAsync(StorageFile bitmap);
function tryDisplayStorageFileBitmapAtCursorAsync(bitmap)
Public Function TryDisplayStorageFileBitmapAtCursorAsync (bitmap As StorageFile) As IAsyncOperation(Of Boolean)
パラメーター
- bitmap
- StorageFile
表示するビットマップ。
戻り値
ビットマップが正常に表示された場合は True を返します。それ以外の場合は False。
- 属性
Windows の要件
デバイス ファミリ |
Windows 10 Fall Creators Update (10.0.16299.0 で導入)
|
API contract |
Windows.Foundation.UniversalApiContract (v5.0 で導入)
|
注釈
LineDisplayCapabilities.CanDisplayBitmaps 値が False の場合、このメソッドは失敗します。