【问题标题】:Does Outlook appointment add-in support for iphone outlook appOutlook 约会加载项是否支持 iphone Outlook 应用程序
【发布时间】:2019-10-20 23:25:42
【问题描述】:
如果我为约会开发了一个 Outlook 插件,它在 iPhone 的 Outlook 中是否可见。我测试了<MobilSettings>,如下所示但没有用?
<FormSettings>
<Form xsi:type="ItemRead">
<DesktopSettings>
<SourceLocation DefaultValue="https://sampleaddin.com/index.html"/>
<RequestedHeight>250</RequestedHeight>
</DesktopSettings>
</Form>
</FormSettings>
【问题讨论】:
标签:
outlook
office-js
office-addins
outlook-web-addins
office365-apps
【解决方案1】:
如果您仅定位阅读电子邮件,则可以支持移动设备。然后就可以声明PhoneSettings节点了:
<FormSettings>
<Form xsi:type="ItemRead">
<DesktopSettings>
<SourceLocation DefaultValue="https://myaddin/index.html"/>
<RequestedHeight>250</RequestedHeight>
</DesktopSettings>
<TabletSettings>
<SourceLocation DefaultValue="https://myaddin/index.html" />
<RequestedHeight>250</RequestedHeight>
</TabletSettings>
<PhoneSettings>
<SourceLocation DefaultValue="https://myaddin/index.html" />
</PhoneSettings>
</Form>
</FormSettings>