繁体   English   中英

Outlook约会加载项是否支持iPhone Outlook App

[英]Does Outlook appointment add-in support for iphone outlook app

如果我开发了约会的Outlook加载项,它是否在iPhone的Outlook上可见。我按以下方式测试了<MobilSettings> ,但没有用?

 <FormSettings>
    <Form xsi:type="ItemRead">
      <DesktopSettings>
        <SourceLocation DefaultValue="https://sampleaddin.com/index.html"/>
        <RequestedHeight>250</RequestedHeight>
      </DesktopSettings>
    </Form>
  </FormSettings>

目前,Outlook Mobile仅支持读取邮件。

这意味着MobileMessageReadCommandSurface是您应该在清单的移动部分中声明的唯一ExtensionPoint。

有关更多信息,请参见Outlook Mobile加载项。

如果您仅定位阅读电子邮件,则可以支持移动设备。 然后,可以声明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>

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM