将 OneNote 嵌入到应用程序中
我想在我的应用程序中嵌入(使 OneNote 成为控件)。我知道 Excel 可以使用 .Net 中的控件,但我不知道如何嵌入 OneNote。我可以使用的语言是 C++ 或 C#。
I want to embed(make OneNote a control) in my application. I know Excel is possible using a control in .Net but I don't know how to make OneNote embedded. The languages I can use are C++ or C#.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
OneNote 不提供可用于将其嵌入到其他应用程序中的控件。唯一可用的 API 集允许读取和写入 OneNote 数据。因此,您正在寻找的东西是不可能的。
OneNote does not provide a control that can be used to embed it into another application. The only API set available allows reading and writing OneNote data. Therefore what you are looking for is not possible.
此处提供了适用于各种 Office 版本的 OneNote 可编程性选项的全面摘要以及代码示例。
简而言之,对于 2003 SP1 及以上版本,有一个 COM API,对于 2007 或 2010 年,有一个对象模型,您可以使用它来实现更丰富的交互。
There is a comprehensive summary of OneNote programmability options, with code samples, for various Office versions here.
Briefly, there is a COM API for versions >= 2003 SP1, and for 2007 or 2010, an Object Model you can use for richer interaction.