MS Office 应用程序和 MS Office 插件之间有什么区别
What is the difference between an MS office app and MS office add in
我试图找到一种将 Outlook 插件发布到 Office 商店的方法。
但我发现我们只能发布 Office 应用程序,而不能发布 Office 商店的插件。
因此,我想知道 office 应用程序和 office 插件之间有什么区别?
有没有一种简单的方法可以将已经内置的插件转换为应用程序?
还是我必须在开发应用程序时重新实现功能?
抱歉造成混淆。 "Add-in" 只是 "App" 的新名称。因此,您应该能够将加载项 (built using HTML and JavaScript) 发布到应用商店。这与真正古老的 COM 加载项不同。
Hence I wanted to know what is the difference between an office app and an office add in?
不久前(在#build2015)MS 也将 Office Apps 命名为 "add-ins"。经典 Office 加载项基于 IDTExtensibility2 接口 (COM)。它们不能在任何设备或网络浏览器上 运行。 Office COM 加载项适用于 MS Office 的桌面版本(x86 和 x64)。 COM 加载项可以使用多种编程语言来实现:从非托管 C++ 或 Delphi 到托管语言(C#、VB.NET 等)。另一方面,Office Apps(现在也称为加载项)是一种基于 Web 的小型应用程序(HTML、CSS、JS),它们对对象模型(通常与选择或打开的项目)。
And is there an easy way to convert an already built add in to an app?
不,它们是完全不同类型的应用程序。
Or will I have to implement the functionality all over again, while developing the app?
是的,您需要从头开始开发 Office 应用程序。
不清楚您说的是什么 Office 应用程序,但如果是 Outlook,您可能会发现 MSDN 中的 Selecting an API or technology for developing solutions for Outlook 2013 文章很有帮助。
我试图找到一种将 Outlook 插件发布到 Office 商店的方法。 但我发现我们只能发布 Office 应用程序,而不能发布 Office 商店的插件。 因此,我想知道 office 应用程序和 office 插件之间有什么区别? 有没有一种简单的方法可以将已经内置的插件转换为应用程序? 还是我必须在开发应用程序时重新实现功能?
抱歉造成混淆。 "Add-in" 只是 "App" 的新名称。因此,您应该能够将加载项 (built using HTML and JavaScript) 发布到应用商店。这与真正古老的 COM 加载项不同。
Hence I wanted to know what is the difference between an office app and an office add in?
不久前(在#build2015)MS 也将 Office Apps 命名为 "add-ins"。经典 Office 加载项基于 IDTExtensibility2 接口 (COM)。它们不能在任何设备或网络浏览器上 运行。 Office COM 加载项适用于 MS Office 的桌面版本(x86 和 x64)。 COM 加载项可以使用多种编程语言来实现:从非托管 C++ 或 Delphi 到托管语言(C#、VB.NET 等)。另一方面,Office Apps(现在也称为加载项)是一种基于 Web 的小型应用程序(HTML、CSS、JS),它们对对象模型(通常与选择或打开的项目)。
And is there an easy way to convert an already built add in to an app?
不,它们是完全不同类型的应用程序。
Or will I have to implement the functionality all over again, while developing the app?
是的,您需要从头开始开发 Office 应用程序。
不清楚您说的是什么 Office 应用程序,但如果是 Outlook,您可能会发现 MSDN 中的 Selecting an API or technology for developing solutions for Outlook 2013 文章很有帮助。