Form 要素
メール アドインが特定のデバイス (デスクトップ、タブレット、または電話) で実行されているときに使用するフォームの UX の設定。
重要
、TabletSettings
、および PhoneSettings
要素はDesktopSettings
、従来のOutlook on the web (通常はオンプレミスの Exchange サーバーの古いバージョンに接続されている) と Windows 上の Outlook 2013 でのみ使用できます。
アドインの種類: メール
構文
<Form xsi:type="ItemRead">
<!--https://MyDomain.com/website.html is a placeholder for your own add-in website.-->
<DesktopSettings>
<!--If you opt to include RequestedHeight, it must be between 32px to 450px, inclusive.-->
<RequestedHeight>360</RequestedHeight>
<SourceLocation DefaultValue="https://MyDomain.com/website.html" />
</DesktopSettings>
<TabletSettings>
<!--If you opt to include RequestedHeight, it must be between 32px to 450px, inclusive.-->
<RequestedHeight>360</RequestedHeight>
<SourceLocation DefaultValue="https://MyDomain.com/website.html" />
</TabletSettings>
<PhoneSettings>
<SourceLocation DefaultValue="https://MyDomain.com/website.html" />
</PhoneSettings>
</Form>
含まれる場所
含めることができるもの
Element |
---|
DesktopSettings |
TabletSettings |
PhoneSettings |
属性
属性 | 必須 | 説明 |
---|---|---|
xsi:type | はい | Outlook にアドインが表示される場所を指定します。 ユーザーがメッセージまたは予定を読み取るときにアドインを表示する場合は、 属性を に ItemRead 設定します。 ただし、ユーザーが返信を作成するとき、新しいメッセージまたは予定を作成するとき、または既存の予定を編集するときにアドインを表示する場合は、 属性を に ItemEdit 設定します。 |
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
Office Add-ins