【问题标题】: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>
    

    【讨论】:

      【解决方案2】:

      目前 Outlook Mobile 仅支持阅读邮件。

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

      更多信息请查看Add-ins for Outlook mobile

      【讨论】:

        猜你喜欢
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 2022-07-30
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        相关资源
        最近更新 更多