14
10

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

#PowerApps SharePointリストへのカメラ画像アップロード (Flowなし & 添付ファイルなし)

Last updated at Posted at 2019-04-21

#PowerApps上でのカメラ画像の取り扱い

ほとんど下図だけで説明は完了です。
image.png

CameraのPhotoプロパティをラベルにセットするとBase64文字列が表示されます。

#画像の登録
上の方法を応用して、SharePointのカスタムリストに画像を登録してみます。
注意するべき点はフィールドのタイプを複数行テキストにすることです。
image.png

フォームで側の設定では、複数行テキストに対応するDataCardValueのDefaultをCamera.Photoに変更します。
※NewやEditなど、ちゃんと対応する場合には

DataCardValue.Default
If(Form1.Mode=FormMode.New,Camera2.Photo,Parent.Default)

このように設定すればよいかと思います。

image.png

表示する際には、テキストを非表示にする代わりに、画像コントロールを挿入し、非表示にしたテキストを設定します。
image.png

このように非常に簡単な方法で、SharePointのカスタムリストに画像を登録することができました。

参考:
https://www.powerappsug.com/communities/community-home/digestviewer/viewthread?MessageKey=21337777-8f51-4695-86b5-82c513c45a8e&CommunityKey=9f5c6fd1-bb0c-4ffa-adab-06d3d72c11da&tab=digestviewer

14
10
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
14
10

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?