LineDisplayWindow.TryDisplayStorageFileBitmapAtPointAsync 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
TryDisplayStorageFileBitmapAtPointAsync(StorageFile, Point) |
특정 지점에서 스토리지 파일의 비트맵을 비동기적으로 표시하려고 시도합니다. |
TryDisplayStorageFileBitmapAtPointAsync(StorageFile, Point, Int32) |
특정 지점에 있는 스토리지 파일의 비트맵을 특정 너비로 비동기적으로 표시하려고 시도합니다. |
TryDisplayStorageFileBitmapAtPointAsync(StorageFile, Point)
특정 지점에서 스토리지 파일의 비트맵을 비동기적으로 표시하려고 시도합니다.
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)
매개 변수
- bitmap
- StorageFile
표시할 비트맵입니다.
- offsetInPixels
- Point
화면 {0,0}의 왼쪽 위 모서리에서 비트맵 디스플레이를 오프셋할 픽셀 수입니다.
반환
비트맵이 성공적으로 표시되면 True를 반환합니다. 그렇지 않으면 False입니다.
- 특성
Windows 요구 사항
디바이스 패밀리 |
Windows 10 Fall Creators Update (10.0.16299.0에서 도입되었습니다.)
|
API contract |
Windows.Foundation.UniversalApiContract (v5.0에서 도입되었습니다.)
|
설명
LineDisplayCapabilities.CanDisplayBitmaps 값이 False이면 이 메서드가 실패합니다.
적용 대상
TryDisplayStorageFileBitmapAtPointAsync(StorageFile, Point, Int32)
특정 지점에 있는 스토리지 파일의 비트맵을 특정 너비로 비동기적으로 표시하려고 시도합니다.
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)
매개 변수
- bitmap
- StorageFile
표시할 비트맵입니다.
- offsetInPixels
- Point
화면 {0,0}의 왼쪽 위 모서리에서 비트맵 디스플레이를 오프셋할 픽셀 수입니다.
- 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보다 크면 이 메서드가 실패합니다.