次の方法で共有


DataPackagePropertySetView.Thumbnail プロパティ

定義

DataPackageView のサムネイル画像を取得します。

public:
 property RandomAccessStreamReference ^ Thumbnail { RandomAccessStreamReference ^ get(); };
RandomAccessStreamReference Thumbnail();
public RandomAccessStreamReference Thumbnail { get; }
var randomAccessStreamReference = dataPackagePropertySetView.thumbnail;
Public ReadOnly Property Thumbnail As RandomAccessStreamReference

プロパティ値

サムネイル画像を表す IRandomAccessStreamReference

この例では、 DataPackageView からサムネイル画像を取得する方法を示します。

if (shareOperation.data.properties.thumbnail) {
    shareOperation.data.properties.thumbnail.openReadAsync().then(function (thumbnailStream) {
        var thumbnailBlob = MSApp.createBlobFromRandomAccessStream(thumbnailStream.contentType, thumbnailStream);
        var thumbnailUrl = URL.createObjectURL(thumbnailBlob, false);
        // To display the thumbnail, you need an element with id of "thumbnail"
        // in your HTML page.
        document.getElementById("thumbnail").src = thumbnailUrl;
    });
}

注釈

イメージを含む DataPackageView を取得するたびに、サムネイル画像のチェックすることをお勧めします。 これにより、共有操作の完了中に、アプリでユーザーに共有されている画像の視覚的な表現を表示できます。

適用対象