diff --git a/plugin_outlook/static/openerp-outlook-plugin/OpenERPClient/OpenERPClient.csproj b/plugin_outlook/static/openerp-outlook-plugin/OpenERPClient/OpenERPClient.csproj index f9ac3e31..044b05e2 100644 --- a/plugin_outlook/static/openerp-outlook-plugin/OpenERPClient/OpenERPClient.csproj +++ b/plugin_outlook/static/openerp-outlook-plugin/OpenERPClient/OpenERPClient.csproj @@ -42,6 +42,7 @@ prompt 4 AllRules.ruleset + x64 pdbonly @@ -51,6 +52,7 @@ prompt 4 AllRules.ruleset + AnyCPU diff --git a/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPlugin/Connect.cs b/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPlugin/Connect.cs index dae4db88..8bdd5056 100644 --- a/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPlugin/Connect.cs +++ b/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPlugin/Connect.cs @@ -17,6 +17,11 @@ You should have received a copy of the GNU Affero General Public License */ +using System.Net; +using System.Net.Sockets; +using Microsoft.Win32; +using NetOffice; +using NetOffice.OfficeApi.Enums; namespace OpenERPOutlookPlugin { @@ -24,9 +29,9 @@ namespace OpenERPOutlookPlugin using System.Reflection; using System.Runtime.InteropServices; using System.Windows.Forms; - using office = Microsoft.Office.Core; - using outlook = Microsoft.Office.Interop.Outlook; using OpenERPClient; + using Outlook = NetOffice.OutlookApi; + using Office = NetOffice.OfficeApi; @@ -46,19 +51,22 @@ namespace OpenERPOutlookPlugin /// /// - [GuidAttribute("C86B5760-1254-4F40-BD25-2094A2A678C4"), ProgId("OpenERPOutlookPlugin.Connect")] + [GuidAttribute("C86B5760-1254-4F40-BD25-2094A2A678C4"), ProgId("OpenERPOutlookPlugin.Connect"), ComVisible(true)] public class Connect : Object, Extensibility.IDTExtensibility2 { + private static readonly string _addinOfficeRegistryKey = "Software\\Microsoft\\Office\\Outlook\\AddIns\\"; + private static readonly string _prodId = "OpenERPOutlookPlugin.Connect"; + private static readonly string _addinFriendlyName = "OpenERPOplugin"; + private static readonly string _addinDescription = "OpenERPOplugin used NetOffice"; + Outlook.Application _outlookApplication ; + + + #region IDTExtensibility2 /// /// Implements the constructor for the Add-in object. /// Place your initialization code within this method. /// - public Connect() - { - - } - public int cnt_mail = 0; /// @@ -75,15 +83,18 @@ public Connect() /// Object representing this Add-in. /// /// + [STAThread] public void OnConnection(object application, Extensibility.ext_ConnectMode connectMode, object addInInst, ref System.Array custom) { - applicationObject = application; - addInInstance = addInInst; - - if (connectMode != Extensibility.ext_ConnectMode.ext_cm_Startup) + try { - OnStartupComplete(ref custom); - + _outlookApplication = new Outlook.Application(null, application); + NetOffice.OutlookSecurity.Suppress.Enabled = true; + } + catch (Exception ex) + { + string message = string.Format("An error occured.{0}{0}{1}", Environment.NewLine, ex.Message); + MessageBox.Show(message, "OPENERP-OnConnection", MessageBoxButtons.OK, MessageBoxIcon.Error); } } @@ -100,11 +111,16 @@ public void OnConnection(object application, Extensibility.ext_ConnectMode conne /// public void OnDisconnection(Extensibility.ext_DisconnectMode disconnectMode, ref System.Array custom) { - if (disconnectMode != Extensibility.ext_DisconnectMode.ext_dm_HostShutdown) + try { - OnBeginShutdown(ref custom); + if (null != _outlookApplication) + _outlookApplication.Dispose(); + } + catch (Exception ex) + { + string message = string.Format("An error occured.{0}{0}{1}", Environment.NewLine, ex.Message); + MessageBox.Show(message, "OPENERP-OnDisconetion", MessageBoxButtons.OK, MessageBoxIcon.Error); } - applicationObject = null; } /// @@ -128,12 +144,12 @@ public void OnAddInsUpdate(ref System.Array custom) /// /// /// - private office.CommandBarButton btn_open_partner; - private office.CommandBarButton btn_open_document; - private office.CommandBarButton btn_open_configuration_form; - private office.CommandBars oCommandBars; - private office.CommandBar menuBar; - private office.CommandBarPopup newMenuBar; + private Office.CommandBarButton btn_open_partner; + private Office.CommandBarButton btn_open_document; + private Office.CommandBarButton btn_open_configuration_form; + //private Office.CommandBars oCommandBars; + private Office.CommandBar menuBar; + private Office.CommandBarPopup newMenuBar; public int countMail() { @@ -144,29 +160,35 @@ public int countMail() */ cnt_mail = 0; - Microsoft.Office.Interop.Outlook.Application app = null; + Outlook.Application app = _outlookApplication; + + //app = new Microsoft.Office.Interop.Outlook.Application(); - app = new Microsoft.Office.Interop.Outlook.Application(); - foreach (var selection in app.ActiveExplorer().Selection) + try { cnt_mail = app.ActiveExplorer().Selection.Count; } - + catch (Exception) + { + return 0; + } return cnt_mail; } public void OnStartupComplete(ref System.Array custom) { - /* + + //----------------------------------------------------------------------------------------------------------------------------------------------------- + /* /* * When outlook is opened it loads a Menu if Outlook plugin is installed. * OpenERP - > Push, Partner ,Documents, Configuration - */ - Microsoft.Office.Interop.Outlook.Application app = null; + #1# + */ + Outlook.Application app = _outlookApplication; try { - app = new Microsoft.Office.Interop.Outlook.Application(); object omissing = System.Reflection.Missing.Value; menuBar = app.ActiveExplorer().CommandBars.ActiveMenuBar; ConfigManager config = new ConfigManager(); @@ -183,52 +205,52 @@ public void OnStartupComplete(ref System.Array custom) } catch(Exception ) { - MessageBox.Show("Unable to connect remote Server ' " + openerp_connect.URL + " '.", "OpenERP Connection",MessageBoxButtons.OK,MessageBoxIcon.Exclamation); + //just shallow exception } - newMenuBar = (office.CommandBarPopup)menuBar.Controls.Add(office.MsoControlType.msoControlPopup, omissing, omissing, omissing, true); + newMenuBar = (Office.CommandBarPopup)menuBar.Controls.Add(MsoControlType.msoControlPopup, omissing, omissing, omissing, true); if (newMenuBar != null) { newMenuBar.Caption = "OpenERP"; newMenuBar.Tag = "My"; - btn_open_partner = (office.CommandBarButton)newMenuBar.Controls.Add(office.MsoControlType.msoControlButton, omissing, omissing, 1, true); - btn_open_partner.Style = office.MsoButtonStyle.msoButtonIconAndCaption; + btn_open_partner = (Office.CommandBarButton)newMenuBar.Controls.Add(MsoControlType.msoControlButton, omissing, omissing, 1, true); + btn_open_partner.Style = MsoButtonStyle.msoButtonIconAndCaption; btn_open_partner.Caption = "Contact"; //Face ID will use to show the ICON in the left side of the menu. btn_open_partner.FaceId = 3710; newMenuBar.Visible = true; - btn_open_partner.Click += new Microsoft.Office.Core._CommandBarButtonEvents_ClickEventHandler(this.btn_open_partner_Click); + btn_open_partner.ClickEvent += new Office.CommandBarButton_ClickEventHandler(this.btn_open_partner_Click); //Core._CommandBarButtonEvents_ClickEventHandler(this.btn_open_partner_Click); - btn_open_document = (office.CommandBarButton)newMenuBar.Controls.Add(office.MsoControlType.msoControlButton, omissing, omissing, 2, true); - btn_open_document.Style = office.MsoButtonStyle.msoButtonIconAndCaption; + btn_open_document = (Office.CommandBarButton)newMenuBar.Controls.Add(MsoControlType.msoControlButton, omissing, omissing, 2, true); + btn_open_document.Style = MsoButtonStyle.msoButtonIconAndCaption; btn_open_document.Caption = "Documents"; //Face ID will use to show the ICON in the left side of the menu. btn_open_document.FaceId = 258; newMenuBar.Visible = true; - btn_open_document.Click += new Microsoft.Office.Core._CommandBarButtonEvents_ClickEventHandler(this.btn_open_document_Click); + btn_open_document.ClickEvent += new Office.CommandBarButton_ClickEventHandler(this.btn_open_document_Click); - btn_open_configuration_form = (office.CommandBarButton)newMenuBar.Controls.Add(office.MsoControlType.msoControlButton, omissing, omissing, 3, true); - btn_open_configuration_form.Style = office.MsoButtonStyle.msoButtonIconAndCaption; + btn_open_configuration_form = (Office.CommandBarButton)newMenuBar.Controls.Add(MsoControlType.msoControlButton, omissing, omissing, 3, true); + btn_open_configuration_form.Style = MsoButtonStyle.msoButtonIconAndCaption; btn_open_configuration_form.Caption = "Configuration"; //Face ID will use to show the ICON in the left side of the menu. btn_open_configuration_form.FaceId = 5644; newMenuBar.Visible = true; - btn_open_configuration_form.Click += new Microsoft.Office.Core._CommandBarButtonEvents_ClickEventHandler(this.btn_open_configuration_form_Click); + btn_open_configuration_form.ClickEvent += new Office.CommandBarButton_ClickEventHandler(this.btn_open_configuration_form_Click); } } - catch (Exception) + catch (Exception ex) { - object oActiveExplorer; - oActiveExplorer = applicationObject.GetType().InvokeMember("ActiveExplorer", BindingFlags.GetProperty, null, applicationObject, null); - oCommandBars = (office.CommandBars)oActiveExplorer.GetType().InvokeMember("CommandBars", BindingFlags.GetProperty, null, oActiveExplorer, null); + string message = string.Format("An error occured.{0}{0}{1}", Environment.NewLine, ex.Message); + MessageBox.Show(message, "OPENERP-Initialize menu", MessageBoxButtons.OK, MessageBoxIcon.Error); } } + #endregion - void btn_open_configuration_form_Click(Microsoft.Office.Core.CommandBarButton Ctrl, ref bool CancelDefault) + void btn_open_configuration_form_Click(Office.CommandBarButton Ctrl, ref bool CancelDefault) { frm_openerp_configuration frm_config = new frm_openerp_configuration(); frm_config.Show(); @@ -248,7 +270,6 @@ public static bool isLoggedIn() if (Cache.OpenERPOutlookPlugin == null || Cache.OpenERPOutlookPlugin.isLoggedIn == false) { throw new Exception("OpenERP Server is not connected!\nPlease connect OpenERP Server from Configuration Menu."); - } return true; } @@ -292,16 +313,15 @@ public void CheckMailCount() } - void btn_open_partner_Click(Microsoft.Office.Core.CommandBarButton Ctrl, ref bool CancelDefault) + void btn_open_partner_Click(Office.CommandBarButton Ctrl, ref bool CancelDefault) { try { Connect.isLoggedIn(); - this.CheckMailCount(); + this.CheckMailCount(); if (countMail() == 1) { - - foreach (outlook.MailItem mailitem in Tools.MailItems()) + foreach (Outlook.MailItem mailitem in Tools.MailItems()) { @@ -327,12 +347,14 @@ void btn_open_partner_Click(Microsoft.Office.Core.CommandBarButton Ctrl, ref boo } - void btn_open_document_Click(Microsoft.Office.Core.CommandBarButton Ctrl, ref bool CancelDefault) + void btn_open_document_Click(Office.CommandBarButton Ctrl, ref bool CancelDefault) { try { Connect.isLoggedIn(); - this.CheckMailCount(); + + this.CheckMailCount(); + if (countMail() == 1) { frm_choose_document_opt frm_doc = new frm_choose_document_opt(); @@ -349,7 +371,61 @@ void btn_open_document_Click(Microsoft.Office.Core.CommandBarButton Ctrl, ref bo public void OnBeginShutdown(ref System.Array custom) { } - private object applicationObject; - private object addInInstance; + + //this available for debug purposes + #region COM Register Functions + + [ComRegisterFunctionAttribute] + public static void RegisterFunction(Type type) + { + try + { + // add codebase value + Assembly thisAssembly = Assembly.GetAssembly(typeof(Connect)); + RegistryKey key = Registry.ClassesRoot.CreateSubKey("CLSID\\{" + type.GUID.ToString().ToUpper() + "}\\InprocServer32\\1.0.0.0"); + key.SetValue("CodeBase", thisAssembly.CodeBase); + key.Close(); + + Registry.ClassesRoot.CreateSubKey(@"CLSID\{" + type.GUID.ToString().ToUpper() + @"}\Programmable"); + + // add bypass key + // http://support.microsoft.com/kb/948461 + key = Registry.ClassesRoot.CreateSubKey("Interface\\{000C0601-0000-0000-C000-000000000046}"); + string defaultValue = key.GetValue("") as string; + if (null == defaultValue) + key.SetValue("", "Office .NET Framework Lockback Bypass Key"); + key.Close(); + + // add outlook addin key + Registry.CurrentUser.CreateSubKey(_addinOfficeRegistryKey + _prodId); + RegistryKey rk = Registry.CurrentUser.OpenSubKey(_addinOfficeRegistryKey + _prodId, true); + rk.SetValue("LoadBehavior", Convert.ToInt32(3)); + rk.SetValue("FriendlyName", _addinFriendlyName); + rk.SetValue("Description", _addinDescription); + rk.Close(); + } + catch (Exception ex) + { + string details = string.Format("{1}{1}Details:{1}{1}{0}", ex.Message, Environment.NewLine); + MessageBox.Show("An error occured." + details, "Register " + _prodId, MessageBoxButtons.OK, MessageBoxIcon.Error); + } + } + + [ComUnregisterFunctionAttribute] + public static void UnregisterFunction(Type type) + { + try + { + Registry.ClassesRoot.DeleteSubKey(@"CLSID\{" + type.GUID.ToString().ToUpper() + @"}\Programmable", false); + Registry.CurrentUser.DeleteSubKey(_addinOfficeRegistryKey + _prodId, false); + } + catch (Exception throwedException) + { + string details = string.Format("{1}{1}Details:{1}{1}{0}", throwedException.Message, Environment.NewLine); + MessageBox.Show("An error occured." + details, "Unregister " + _prodId, MessageBoxButtons.OK, MessageBoxIcon.Error); + } + } + + #endregion } } diff --git a/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPlugin/OpenERPOutlookPlugin.cs b/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPlugin/OpenERPOutlookPlugin.cs index e1d45318..9364e2ab 100644 --- a/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPlugin/OpenERPOutlookPlugin.cs +++ b/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPlugin/OpenERPOutlookPlugin.cs @@ -22,7 +22,7 @@ You should have received a copy of the GNU Affero General Public License using System.Collections; using System.Linq; using OpenERPClient; -using outlook = Microsoft.Office.Interop.Outlook; +using outlook = NetOffice.OutlookApi; using System.Windows.Forms; namespace OpenERPOutlookPlugin { diff --git a/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPlugin/OpenERPOutlookPlugin.csproj b/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPlugin/OpenERPOutlookPlugin.csproj index 6fdd26b3..98c93521 100644 --- a/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPlugin/OpenERPOutlookPlugin.csproj +++ b/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPlugin/OpenERPOutlookPlugin.csproj @@ -12,7 +12,7 @@ false OpenERPOutlookPlugin OpenERPOutlookPlugin - v3.5 + v4.0 @@ -33,6 +33,7 @@ false false true + true @@ -44,7 +45,7 @@ false true AllRules.ruleset - AnyCPU + x64 false @@ -56,12 +57,28 @@ false true AllRules.ruleset + AnyCPU ..\CookComputing.XmlRpcV2.dll + + ..\packages\NetOffice.Core.Net35.1.7.2.0\lib\net35\NetOffice.dll + False + + + ..\..\..\..\..\..\..\NetOffice 1.7.3\NetOffice 1.7.3\Toolbox Binaries\NetOffice.OutlookSecurity.dll + + + ..\packages\NetOffice.Core.Net35.1.7.2.0\lib\net35\OfficeApi.dll + False + + + ..\packages\NetOffice.Outlook.Net35.1.7.2.0\lib\net35\OutlookApi.dll + False + System.dll System @@ -83,6 +100,10 @@ System.XML.dll System.XML + + ..\packages\NetOffice.Core.Net35.1.7.2.0\lib\net35\VBIDEApi.dll + True + @@ -184,37 +205,12 @@ + SettingsSingleFileGenerator Settings.Designer.cs - - - {2DF8D04C-5BFA-101B-BDE5-00AA0044DE52} - 2 - 4 - 0 - primary - False - - - {00062FFF-0000-0000-C000-000000000046} - 9 - 3 - 0 - primary - False - - - {00020430-0000-0000-C000-000000000046} - 2 - 0 - 0 - primary - False - - diff --git a/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPlugin/OpenERPOutlookPlugin.csproj.user b/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPlugin/OpenERPOutlookPlugin.csproj.user index be11fa35..52944ec0 100644 --- a/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPlugin/OpenERPOutlookPlugin.csproj.user +++ b/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPlugin/OpenERPOutlookPlugin.csproj.user @@ -1,8 +1,10 @@ - + + - C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\ - C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\devenv.exe + D:\tmp\ofWork\newnew\odoo-extra\plugin_outlook\static\openerp-outlook-plugin\OpenERPOutlookPlugin\bin\Debug\ + C:\Program Files\Microsoft Office\Office15\OUTLOOK.EXE Program + true C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\ diff --git a/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPlugin/Properties/Resources.Designer.cs b/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPlugin/Properties/Resources.Designer.cs index 5135996f..879e6b80 100644 --- a/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPlugin/Properties/Resources.Designer.cs +++ b/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPlugin/Properties/Resources.Designer.cs @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:2.0.50727.1433 +// Runtime Version:4.0.30319.34014 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. @@ -19,7 +19,7 @@ namespace OpenERPOutlookPlugin.Properties { // class via a tool like ResGen or Visual Studio. // To add or remove a member, edit your .ResX file then rerun ResGen // with the /str option, or rebuild your VS project. - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "2.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] internal class Resources { @@ -60,6 +60,9 @@ internal Resources() { } } + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// internal static System.Drawing.Bitmap _195737_152643643962_3595480_n { get { object obj = ResourceManager.GetObject("195737_152643643962_3595480_n", resourceCulture); @@ -67,6 +70,9 @@ internal static System.Drawing.Bitmap _195737_152643643962_3595480_n { } } + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// internal static System.Drawing.Bitmap Archive { get { object obj = ResourceManager.GetObject("Archive", resourceCulture); @@ -74,6 +80,9 @@ internal static System.Drawing.Bitmap Archive { } } + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// internal static System.Drawing.Bitmap Create { get { object obj = ResourceManager.GetObject("Create", resourceCulture); @@ -81,6 +90,9 @@ internal static System.Drawing.Bitmap Create { } } + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// internal static System.Drawing.Bitmap Error { get { object obj = ResourceManager.GetObject("Error", resourceCulture); @@ -88,6 +100,9 @@ internal static System.Drawing.Bitmap Error { } } + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// internal static System.Drawing.Bitmap MoveDown { get { object obj = ResourceManager.GetObject("MoveDown", resourceCulture); @@ -95,6 +110,9 @@ internal static System.Drawing.Bitmap MoveDown { } } + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// internal static System.Drawing.Bitmap MoveLeft { get { object obj = ResourceManager.GetObject("MoveLeft", resourceCulture); @@ -102,6 +120,9 @@ internal static System.Drawing.Bitmap MoveLeft { } } + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// internal static System.Drawing.Bitmap Search { get { object obj = ResourceManager.GetObject("Search", resourceCulture); @@ -109,6 +130,9 @@ internal static System.Drawing.Bitmap Search { } } + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// internal static System.Drawing.Bitmap Success { get { object obj = ResourceManager.GetObject("Success", resourceCulture); diff --git a/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPlugin/Properties/Settings.Designer.cs b/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPlugin/Properties/Settings.Designer.cs index 125ba326..91f7fd41 100644 --- a/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPlugin/Properties/Settings.Designer.cs +++ b/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPlugin/Properties/Settings.Designer.cs @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:2.0.50727.3053 +// Runtime Version:4.0.30319.34014 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. @@ -12,7 +12,7 @@ namespace OpenERPOutlookPlugin.Properties { [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "9.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "12.0.0.0")] internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); diff --git a/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPlugin/Tools.cs b/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPlugin/Tools.cs index 5d102c73..ebcce067 100644 --- a/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPlugin/Tools.cs +++ b/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPlugin/Tools.cs @@ -19,9 +19,8 @@ You should have received a copy of the GNU Affero General Public License using System; using System.Collections; -using System.Drawing; using System.IO; -using outlook = Microsoft.Office.Interop.Outlook; +using outlook = NetOffice.OutlookApi; namespace OpenERPOutlookPlugin @@ -30,8 +29,9 @@ static public class Tools { static public outlook.MailItem[] MailItems() { - Microsoft.Office.Interop.Outlook.Application app = null; - app = new Microsoft.Office.Interop.Outlook.Application(); + //Outlook is singleton application, so always return same instance + outlook.Application app = new outlook.Application(); + NetOffice.OutlookSecurity.Suppress.Enabled = true; ArrayList mailItems = new ArrayList(); foreach (var selection in app.ActiveExplorer().Selection) { diff --git a/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPlugin/frm_choose_document_opt.Designer.cs b/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPlugin/frm_choose_document_opt.Designer.cs index 396ed9ef..25724a0b 100644 --- a/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPlugin/frm_choose_document_opt.Designer.cs +++ b/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPlugin/frm_choose_document_opt.Designer.cs @@ -1,4 +1,7 @@ -namespace OpenERPOutlookPlugin +using System; +using System.Runtime.CompilerServices; + +namespace OpenERPOutlookPlugin { partial class frm_choose_document_opt { @@ -48,7 +51,7 @@ private void InitializeComponent() this.btn_doc.Text = "&Open an existing Document"; this.btn_doc.TextAlign = System.Drawing.ContentAlignment.MiddleRight; this.btn_doc.UseVisualStyleBackColor = true; - this.btn_doc.Click += new System.EventHandler(this.btn_doc_Click); + this.btn_doc.Click += new EventHandler(BtnDocOnClick); // // btn_cncl // diff --git a/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPlugin/frm_choose_document_opt.cs b/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPlugin/frm_choose_document_opt.cs index e3649228..0203eede 100644 --- a/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPlugin/frm_choose_document_opt.cs +++ b/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPlugin/frm_choose_document_opt.cs @@ -26,7 +26,7 @@ You should have received a copy of the GNU Affero General Public License using System.Text; using System.Windows.Forms; using OpenERPClient; -using outlook = Microsoft.Office.Interop.Outlook; +using outlook = NetOffice.OutlookApi; using System.Collections; namespace OpenERPOutlookPlugin @@ -94,5 +94,14 @@ private void btn_newdoc_Click(object sender, EventArgs e) this.Close(); } + private void BtnDocOnClick(object sender, EventArgs e) + { + foreach (NetOffice.OutlookApi.MailItem mailitem in Tools.MailItems()) + { + Cache.OpenERPOutlookPlugin.Open_Document(mailitem); + + } + this.Close(); + } } } diff --git a/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPlugin/frm_create_doc.Designer.cs b/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPlugin/frm_create_doc.Designer.cs index 88ed53cb..5fa3ca5c 100644 --- a/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPlugin/frm_create_doc.Designer.cs +++ b/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPlugin/frm_create_doc.Designer.cs @@ -1,4 +1,7 @@ -namespace OpenERPOutlookPlugin +using System; +using OpenERPClient; + +namespace OpenERPOutlookPlugin { partial class frm_create_doc { @@ -88,7 +91,36 @@ private void InitializeComponent() this.btn_create_doc.Text = "&Create "; this.btn_create_doc.TextAlign = System.Drawing.ContentAlignment.TopRight; this.btn_create_doc.UseVisualStyleBackColor = true; - this.btn_create_doc.Click += new System.EventHandler(this.btn_create_doc_Click); + this.btn_create_doc.Click += new System.EventHandler((sender, e) => + { + try + { + if (this.cmboboxcreate.SelectedItem == null) + { + throw new Exception("Please select a document from the document list."); + } + else + { + frm_push_mail pushmail = new frm_push_mail(); + Model model = (Model) this.cmboboxcreate.SelectedItem; + foreach (NetOffice.OutlookApi.MailItem mailItem in Tools.MailItems()) + { + Cache.OpenERPOutlookPlugin.PushMail(mailItem, model.model, 0); + + } + bool temp = true; + this.Close(); + } + + } + + catch (Exception ex) + { + + Connect.handleException(ex); + } + + }); // // lbtypedoc // diff --git a/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPlugin/frm_create_doc.cs b/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPlugin/frm_create_doc.cs index d35e6524..75f79e14 100644 --- a/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPlugin/frm_create_doc.cs +++ b/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPlugin/frm_create_doc.cs @@ -1,4 +1,4 @@ -/* +/* OpenERP, Open Source Business Applications Copyright (c) 2011 OpenERP S.A. @@ -17,7 +17,7 @@ You should have received a copy of the GNU Affero General Public License */ -using System; + using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; @@ -57,7 +57,12 @@ private void btn_create_doc_Click(object sender, EventArgs e) { frm_push_mail pushmail = new frm_push_mail(); Model model = (Model)cmboboxcreate.SelectedItem; - pushmail.push_mail(model.model, 0); + foreach (NetOffice.OutlookApi.MailItem mailItem in Tools.MailItems()) + { + Cache.OpenERPOutlookPlugin.PushMail(mailItem, model.model, 0); + + } + bool temp = true; this.Close(); } diff --git a/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPlugin/frm_openerp_connection.cs b/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPlugin/frm_openerp_connection.cs index 5e09fc15..522e3973 100644 --- a/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPlugin/frm_openerp_connection.cs +++ b/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPlugin/frm_openerp_connection.cs @@ -21,10 +21,6 @@ You should have received a copy of the GNU Affero General Public License using System.Windows.Forms; using OpenERPClient; using System.Net; -using System.IO; -using System.Text; -using System.Security; -using System.Net; using System.Security.Cryptography.X509Certificates; using System.Net.Security; diff --git a/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPlugin/frm_push_mail.cs b/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPlugin/frm_push_mail.cs index b3aa195b..fc57eb90 100644 --- a/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPlugin/frm_push_mail.cs +++ b/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPlugin/frm_push_mail.cs @@ -22,7 +22,7 @@ You should have received a copy of the GNU Affero General Public License using System.Drawing; using System.Windows.Forms; using OpenERPClient; -using outlook = Microsoft.Office.Interop.Outlook; +using outlook = NetOffice.OutlookApi; namespace OpenERPOutlookPlugin { @@ -37,36 +37,6 @@ public frm_push_mail() cmboboxcreate.Items.Remove(""); } - public bool push_mail(string model, int thread_id) - { - foreach (outlook.MailItem mailItem in Tools.MailItems()) - { - Cache.OpenERPOutlookPlugin.PushMail(mailItem, model, thread_id); - - } - return true; - } - - private void btn_attach_mail_to_partner_Click(object sender, EventArgs e) - { - try - { - if (lstview_object.SelectedItems.Count <= 0) - { - throw new Exception("Plese select item from the list to push"); - } - foreach (ListViewItem lv in lstview_object.SelectedItems) - { - this.push_mail(lv.SubItems[1].Name, Convert.ToInt32(lv.Name)); - } - this.Close(); - } - catch (Exception ex) - { - Connect.handleException(ex); - } - } - private void frm_push_mail_Load(object sender, EventArgs e) { diff --git a/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPlugin/frm_push_mail.designer.cs b/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPlugin/frm_push_mail.designer.cs index f6282eed..dbe1c315 100644 --- a/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPlugin/frm_push_mail.designer.cs +++ b/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPlugin/frm_push_mail.designer.cs @@ -1,4 +1,7 @@ -namespace OpenERPOutlookPlugin +using System; +using System.Windows.Forms; + +namespace OpenERPOutlookPlugin { partial class frm_push_mail { @@ -154,7 +157,30 @@ private void InitializeComponent() this.btn_attach_mail_to_partner.Text = "P&ush "; this.btn_attach_mail_to_partner.TextAlign = System.Drawing.ContentAlignment.TopRight; this.btn_attach_mail_to_partner.UseVisualStyleBackColor = true; - this.btn_attach_mail_to_partner.Click += new System.EventHandler(this.btn_attach_mail_to_partner_Click); + this.btn_attach_mail_to_partner.Click += new System.EventHandler((sender, e) => + { + try + { + if (this.lstview_object.SelectedItems.Count <= 0) + { + throw new Exception("Plese select item from the list to push"); + } + foreach (ListViewItem lv in this.lstview_object.SelectedItems) + { + foreach (NetOffice.OutlookApi.MailItem mailItem in Tools.MailItems()) + { + Cache.OpenERPOutlookPlugin.PushMail(mailItem, lv.SubItems[1].Name, Convert.ToInt32(lv.Name)); + + } + bool temp = true; + } + this.Close(); + } + catch (Exception ex) + { + Connect.handleException(ex); + } + }); // // lbldocs // diff --git a/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPlugin/frm_select_partner.Designer.cs b/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPlugin/frm_select_partner.Designer.cs index 95c478fb..9c35ac97 100644 --- a/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPlugin/frm_select_partner.Designer.cs +++ b/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPlugin/frm_select_partner.Designer.cs @@ -1,3 +1,5 @@ +using System; + namespace OpenERPOutlookPlugin { partial class frm_select_partner @@ -77,7 +79,30 @@ private void InitializeComponent() this.btn_select_partner_select.Text = "&Link"; this.btn_select_partner_select.TextAlign = System.Drawing.ContentAlignment.TopRight; this.btn_select_partner_select.UseVisualStyleBackColor = true; - this.btn_select_partner_select.Click += new System.EventHandler(this.btn_select_partner_select_Click); + this.btn_select_partner_select.Click += new System.EventHandler((sender, e) => + { + try + { + if (this.lstbox_select_partner.SelectedItem == null) + { + throw new Exception("Please select a partner from the list."); + } + else + { + this.txt_select_partner.Text = this.lstbox_select_partner.SelectedItem.ToString(); + int partner_id = (int)Cache.OpenERPOutlookPlugin.CreatePartnerRecord(this.lstbox_select_partner.SelectedItem.ToString()); + foreach (NetOffice.OutlookApi.MailItem mailItem in Tools.MailItems()) + { + Cache.OpenERPOutlookPlugin.CreateContactRecord(partner_id, mailItem.SenderName, mailItem.SenderEmailAddress); + } + this.Close(); + } + } + catch (Exception ex) + { + Connect.handleException(ex); + } + }); // // btn_select_partner_close // diff --git a/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPlugin/frm_select_partner.cs b/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPlugin/frm_select_partner.cs index 4e3af054..cb70ace8 100644 --- a/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPlugin/frm_select_partner.cs +++ b/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPlugin/frm_select_partner.cs @@ -21,7 +21,7 @@ You should have received a copy of the GNU Affero General Public License using System.Collections; using System.Windows.Forms; using OpenERPClient; -using outlook = Microsoft.Office.Interop.Outlook; +using outlook = NetOffice.OutlookApi; namespace OpenERPOutlookPlugin { diff --git a/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPluginSetup/OpenERPOutlookPluginSetup.vdproj b/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPluginSetup/OpenERPOutlookPluginSetup.vdproj index 2ecd6c49..d52a783b 100644 --- a/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPluginSetup/OpenERPOutlookPluginSetup.vdproj +++ b/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPluginSetup/OpenERPOutlookPluginSetup.vdproj @@ -15,38 +15,98 @@ { "Entry" { - "MsmKey" = "8:_6AC61E6DAA74BD8A62A56739851214E7" + "MsmKey" = "8:_14664039130069B2578996051680D3B1" "OwnerKey" = "8:_D219AD7AB7924D44B7E2945648C76CF7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_7588D46F3D97B108090A11D1415DE5EC" + "MsmKey" = "8:_165E4185D40D46FC518A41316A9CE0FA" "OwnerKey" = "8:_D219AD7AB7924D44B7E2945648C76CF7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_9BA1227571F16B6ABCB102A098A4B13F" - "OwnerKey" = "8:_6AC61E6DAA74BD8A62A56739851214E7" + "MsmKey" = "8:_165E4185D40D46FC518A41316A9CE0FA" + "OwnerKey" = "8:_98E410AC7379F2F9C2AFA0649344A1CB" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_9BA1227571F16B6ABCB102A098A4B13F" + "MsmKey" = "8:_165E4185D40D46FC518A41316A9CE0FA" + "OwnerKey" = "8:_9C5489D5698B1E408F5900447B54F4B4" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_235CBCDD68EEB5B7999447ED8E4F0600" "OwnerKey" = "8:_D219AD7AB7924D44B7E2945648C76CF7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_B66CD6B8E834B37C2AFA64398688811D" + "MsmKey" = "8:_235CBCDD68EEB5B7999447ED8E4F0600" + "OwnerKey" = "8:_98E410AC7379F2F9C2AFA0649344A1CB" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_235CBCDD68EEB5B7999447ED8E4F0600" + "OwnerKey" = "8:_9C5489D5698B1E408F5900447B54F4B4" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_235CBCDD68EEB5B7999447ED8E4F0600" + "OwnerKey" = "8:_165E4185D40D46FC518A41316A9CE0FA" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_97929B947FAC623B5F6A9C00C7FFEE96" + "OwnerKey" = "8:_D219AD7AB7924D44B7E2945648C76CF7" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_98E410AC7379F2F9C2AFA0649344A1CB" "OwnerKey" = "8:_D219AD7AB7924D44B7E2945648C76CF7" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_B66CD6B8E834B37C2AFA64398688811D" - "OwnerKey" = "8:_7588D46F3D97B108090A11D1415DE5EC" + "MsmKey" = "8:_9C5489D5698B1E408F5900447B54F4B4" + "OwnerKey" = "8:_D219AD7AB7924D44B7E2945648C76CF7" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_B2A3D0A87FA418DA69B91BB1C733AA30" + "OwnerKey" = "8:_D219AD7AB7924D44B7E2945648C76CF7" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_B2A3D0A87FA418DA69B91BB1C733AA30" + "OwnerKey" = "8:_98E410AC7379F2F9C2AFA0649344A1CB" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_B2A3D0A87FA418DA69B91BB1C733AA30" + "OwnerKey" = "8:_165E4185D40D46FC518A41316A9CE0FA" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_CE1FAF9C0EC9C889E2A9C168D6B438C3" + "OwnerKey" = "8:_D219AD7AB7924D44B7E2945648C76CF7" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_CE1FAF9C0EC9C889E2A9C168D6B438C3" + "OwnerKey" = "8:_DDD9B55FD2322B304CB5B459FD2B83E9" "MsmSig" = "8:_UNDEFINED" } "Entry" @@ -57,32 +117,68 @@ } "Entry" { + "MsmKey" = "8:_DDD9B55FD2322B304CB5B459FD2B83E9" + "OwnerKey" = "8:_D219AD7AB7924D44B7E2945648C76CF7" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_7588D46F3D97B108090A11D1415DE5EC" + "OwnerKey" = "8:_D219AD7AB7924D44B7E2945648C76CF7" "MsmSig" = "8:_UNDEFINED" } "Entry" { "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_9BA1227571F16B6ABCB102A098A4B13F" + "OwnerKey" = "8:_97929B947FAC623B5F6A9C00C7FFEE96" "MsmSig" = "8:_UNDEFINED" } "Entry" { "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_6AC61E6DAA74BD8A62A56739851214E7" + "OwnerKey" = "8:_98E410AC7379F2F9C2AFA0649344A1CB" "MsmSig" = "8:_UNDEFINED" } "Entry" { "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_B66CD6B8E834B37C2AFA64398688811D" + "OwnerKey" = "8:_9C5489D5698B1E408F5900447B54F4B4" "MsmSig" = "8:_UNDEFINED" } "Entry" { "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_D219AD7AB7924D44B7E2945648C76CF7" + "OwnerKey" = "8:_165E4185D40D46FC518A41316A9CE0FA" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_235CBCDD68EEB5B7999447ED8E4F0600" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_DDD9B55FD2322B304CB5B459FD2B83E9" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_CE1FAF9C0EC9C889E2A9C168D6B438C3" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_B2A3D0A87FA418DA69B91BB1C733AA30" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_14664039130069B2578996051680D3B1" "MsmSig" = "8:_UNDEFINED" } } @@ -182,7 +278,7 @@ { "Name" = "8:.NET Framework" "Message" = "8:[VSDNETMSG]" - "Version" = "8:3.5.21022" + "FrameworkVersion" = "8:3.5.21022 " "AllowLaterVersions" = "11:FALSE" "InstallUrl" = "8:http://go.microsoft.com/fwlink/?LinkId=76617" } @@ -190,20 +286,20 @@ } "File" { - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_6AC61E6DAA74BD8A62A56739851214E7" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_14664039130069B2578996051680D3B1" { "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:TRUE" - "AssemblyAsmDisplayName" = "8:Microsoft.Office.Interop.Outlook, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:Extensibility, Version=7.0.3300.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" "ScatterAssemblies" { - "_6AC61E6DAA74BD8A62A56739851214E7" + "_14664039130069B2578996051680D3B1" { - "Name" = "8:Microsoft.Office.Interop.Outlook.dll" + "Name" = "8:Extensibility.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:Microsoft.Office.Interop.Outlook.dll" + "SourcePath" = "8:Extensibility.dll" "TargetName" = "8:" "Tag" = "8:" "Folder" = "8:_F8355F1930014BA7AC04125197F9FCF8" @@ -221,20 +317,144 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_7588D46F3D97B108090A11D1415DE5EC" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_165E4185D40D46FC518A41316A9CE0FA" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:OpenERPClient, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:OfficeApi, Version=1.7.2.0, Culture=neutral, PublicKeyToken=1208423a019d3443, processorArchitecture=MSIL" "ScatterAssemblies" { - "_7588D46F3D97B108090A11D1415DE5EC" + "_165E4185D40D46FC518A41316A9CE0FA" { - "Name" = "8:OpenERPClient.dll" + "Name" = "8:OfficeApi.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:OpenERPClient.dll" + "SourcePath" = "8:OfficeApi.dll" + "TargetName" = "8:" + "Tag" = "8:" + "Folder" = "8:_F8355F1930014BA7AC04125197F9FCF8" + "Condition" = "8:" + "Transitive" = "11:FALSE" + "Vital" = "11:TRUE" + "ReadOnly" = "11:FALSE" + "Hidden" = "11:FALSE" + "System" = "11:FALSE" + "Permanent" = "11:FALSE" + "SharedLegacy" = "11:FALSE" + "PackageAs" = "3:1" + "Register" = "3:1" + "Exclude" = "11:FALSE" + "IsDependency" = "11:TRUE" + "IsolateTo" = "8:" + } + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_235CBCDD68EEB5B7999447ED8E4F0600" + { + "AssemblyRegister" = "3:1" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:NetOffice, Version=1.7.2.0, Culture=neutral, PublicKeyToken=0939138a4a188afd, processorArchitecture=MSIL" + "ScatterAssemblies" + { + "_235CBCDD68EEB5B7999447ED8E4F0600" + { + "Name" = "8:NetOffice.dll" + "Attributes" = "3:512" + } + } + "SourcePath" = "8:NetOffice.dll" + "TargetName" = "8:" + "Tag" = "8:" + "Folder" = "8:_F8355F1930014BA7AC04125197F9FCF8" + "Condition" = "8:" + "Transitive" = "11:FALSE" + "Vital" = "11:TRUE" + "ReadOnly" = "11:FALSE" + "Hidden" = "11:FALSE" + "System" = "11:FALSE" + "Permanent" = "11:FALSE" + "SharedLegacy" = "11:FALSE" + "PackageAs" = "3:1" + "Register" = "3:1" + "Exclude" = "11:FALSE" + "IsDependency" = "11:TRUE" + "IsolateTo" = "8:" + } + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_97929B947FAC623B5F6A9C00C7FFEE96" + { + "AssemblyRegister" = "3:1" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:NetOffice.OutlookSecurity, Version=1.2.0.0, Culture=neutral, processorArchitecture=MSIL" + "ScatterAssemblies" + { + "_97929B947FAC623B5F6A9C00C7FFEE96" + { + "Name" = "8:NetOffice.OutlookSecurity.dll" + "Attributes" = "3:512" + } + } + "SourcePath" = "8:NetOffice.OutlookSecurity.dll" + "TargetName" = "8:" + "Tag" = "8:" + "Folder" = "8:_F8355F1930014BA7AC04125197F9FCF8" + "Condition" = "8:" + "Transitive" = "11:FALSE" + "Vital" = "11:TRUE" + "ReadOnly" = "11:FALSE" + "Hidden" = "11:FALSE" + "System" = "11:FALSE" + "Permanent" = "11:FALSE" + "SharedLegacy" = "11:FALSE" + "PackageAs" = "3:1" + "Register" = "3:1" + "Exclude" = "11:FALSE" + "IsDependency" = "11:TRUE" + "IsolateTo" = "8:" + } + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_98E410AC7379F2F9C2AFA0649344A1CB" + { + "AssemblyRegister" = "3:1" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:OutlookApi, Version=1.7.2.0, Culture=neutral, PublicKeyToken=ab91c198d7b96dca, processorArchitecture=MSIL" + "ScatterAssemblies" + { + "_98E410AC7379F2F9C2AFA0649344A1CB" + { + "Name" = "8:OutlookApi.dll" + "Attributes" = "3:512" + } + } + "SourcePath" = "8:OutlookApi.dll" + "TargetName" = "8:" + "Tag" = "8:" + "Folder" = "8:_F8355F1930014BA7AC04125197F9FCF8" + "Condition" = "8:" + "Transitive" = "11:FALSE" + "Vital" = "11:TRUE" + "ReadOnly" = "11:FALSE" + "Hidden" = "11:FALSE" + "System" = "11:FALSE" + "Permanent" = "11:FALSE" + "SharedLegacy" = "11:FALSE" + "PackageAs" = "3:1" + "Register" = "3:1" + "Exclude" = "11:FALSE" + "IsDependency" = "11:TRUE" + "IsolateTo" = "8:" + } + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_9C5489D5698B1E408F5900447B54F4B4" + { + "AssemblyRegister" = "3:1" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:VBIDEApi, Version=1.7.2.0, Culture=neutral, PublicKeyToken=6040f8ab492f76a1, processorArchitecture=MSIL" + "ScatterAssemblies" + { + "_9C5489D5698B1E408F5900447B54F4B4" + { + "Name" = "8:VBIDEApi.dll" + "Attributes" = "3:512" + } + } + "SourcePath" = "8:VBIDEApi.dll" "TargetName" = "8:" "Tag" = "8:" "Folder" = "8:_F8355F1930014BA7AC04125197F9FCF8" @@ -252,20 +472,20 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_9BA1227571F16B6ABCB102A098A4B13F" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_B2A3D0A87FA418DA69B91BB1C733AA30" { "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:TRUE" - "AssemblyAsmDisplayName" = "8:office, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:stdole, Version=7.0.3300.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" "ScatterAssemblies" { - "_9BA1227571F16B6ABCB102A098A4B13F" + "_B2A3D0A87FA418DA69B91BB1C733AA30" { - "Name" = "8:office.dll" + "Name" = "8:stdole.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:office.dll" + "SourcePath" = "8:stdole.dll" "TargetName" = "8:" "Tag" = "8:" "Folder" = "8:_F8355F1930014BA7AC04125197F9FCF8" @@ -283,14 +503,14 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_B66CD6B8E834B37C2AFA64398688811D" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_CE1FAF9C0EC9C889E2A9C168D6B438C3" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" "AssemblyAsmDisplayName" = "8:CookComputing.XmlRpcV2, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL" "ScatterAssemblies" { - "_B66CD6B8E834B37C2AFA64398688811D" + "_CE1FAF9C0EC9C889E2A9C168D6B438C3" { "Name" = "8:CookComputing.XmlRpcV2.dll" "Attributes" = "3:512" @@ -314,6 +534,37 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_DDD9B55FD2322B304CB5B459FD2B83E9" + { + "AssemblyRegister" = "3:1" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:OpenERPClient, Version=1.0.0.0, Culture=neutral, processorArchitecture=AMD64" + "ScatterAssemblies" + { + "_DDD9B55FD2322B304CB5B459FD2B83E9" + { + "Name" = "8:OpenERPClient.dll" + "Attributes" = "3:512" + } + } + "SourcePath" = "8:OpenERPClient.dll" + "TargetName" = "8:" + "Tag" = "8:" + "Folder" = "8:_F8355F1930014BA7AC04125197F9FCF8" + "Condition" = "8:" + "Transitive" = "11:FALSE" + "Vital" = "11:TRUE" + "ReadOnly" = "11:FALSE" + "Hidden" = "11:FALSE" + "System" = "11:FALSE" + "Permanent" = "11:FALSE" + "SharedLegacy" = "11:FALSE" + "PackageAs" = "3:1" + "Register" = "3:1" + "Exclude" = "11:FALSE" + "IsDependency" = "11:TRUE" + "IsolateTo" = "8:" + } } "FileType" { @@ -371,8 +622,9 @@ "Name" = "8:Microsoft Visual Studio" "ProductName" = "8:OpenERPOutlookPluginSetup" "ProductCode" = "8:{DB110066-1D22-421E-AE6E-008EFC7D9BA3}" - "PackageCode" = "8:{01C16D46-10C4-4867-9DA7-158EA0851BA2}" + "PackageCode" = "8:{BEF7213D-7266-42BE-95A7-E05E8D6CC80C}" "UpgradeCode" = "8:{D423841B-05E6-4B05-93A7-3AF0D3F87416}" + "AspNetVersion" = "8:4.0.30319.0" "RestartWWWService" = "11:FALSE" "RemovePreviousVersions" = "11:FALSE" "DetectNewerInstalledVersion" = "11:TRUE" @@ -957,7 +1209,7 @@ { "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_D219AD7AB7924D44B7E2945648C76CF7" { - "SourcePath" = "8:..\\OpenERPOutlookPlugin\\obj\\Debug\\OpenERPOutlookPlugin.dll" + "SourcePath" = "8:..\\OpenERPOutlookPlugin\\obj\\Release\\OpenERPOutlookPlugin.dll" "TargetName" = "8:" "Tag" = "8:" "Folder" = "8:_F8355F1930014BA7AC04125197F9FCF8" diff --git a/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPluginSetup32.msi b/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPluginSetup32.msi index 64f54f22..a994fd4a 100644 Binary files a/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPluginSetup32.msi and b/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPluginSetup32.msi differ diff --git a/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPluginSetup64.msi b/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPluginSetup64.msi index 3b91dafe..e2394e4f 100644 Binary files a/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPluginSetup64.msi and b/plugin_outlook/static/openerp-outlook-plugin/OpenERPOutlookPluginSetup64.msi differ diff --git a/plugin_outlook/static/openerp-outlook-plugin/packages/NetOffice.Core.Net35.1.7.2.0/NetOffice.Core.Net35.1.7.2.0.nupkg b/plugin_outlook/static/openerp-outlook-plugin/packages/NetOffice.Core.Net35.1.7.2.0/NetOffice.Core.Net35.1.7.2.0.nupkg new file mode 100644 index 00000000..8f5a550a Binary files /dev/null and b/plugin_outlook/static/openerp-outlook-plugin/packages/NetOffice.Core.Net35.1.7.2.0/NetOffice.Core.Net35.1.7.2.0.nupkg differ diff --git a/plugin_outlook/static/openerp-outlook-plugin/packages/NetOffice.Core.Net35.1.7.2.0/lib/net35/NetOffice.dll b/plugin_outlook/static/openerp-outlook-plugin/packages/NetOffice.Core.Net35.1.7.2.0/lib/net35/NetOffice.dll new file mode 100644 index 00000000..ac5544b3 Binary files /dev/null and b/plugin_outlook/static/openerp-outlook-plugin/packages/NetOffice.Core.Net35.1.7.2.0/lib/net35/NetOffice.dll differ diff --git a/plugin_outlook/static/openerp-outlook-plugin/packages/NetOffice.Core.Net35.1.7.2.0/lib/net35/NetOffice.xml b/plugin_outlook/static/openerp-outlook-plugin/packages/NetOffice.Core.Net35.1.7.2.0/lib/net35/NetOffice.xml new file mode 100644 index 00000000..af32a68e --- /dev/null +++ b/plugin_outlook/static/openerp-outlook-plugin/packages/NetOffice.Core.Net35.1.7.2.0/lib/net35/NetOffice.xml @@ -0,0 +1,2678 @@ + + + + NetOffice + + + + + Specify the kind and condition of an register method call + + + + + the base class COMAddin doesnt perform any register operations and call the specified register method with the parameter RegisterCall.Replace. The specified register method has to do all register operations + + + + + the method was called with parameter RegisterCall.CallBefore before the base class do any register operations. + + + + + the method was called with parameter RegisterCall.CallAfter when the base register operations is done. + + + + + this means a combination of CallBefore and CallAfter + + + + + Parameter for Register/Unregister Methods + + + + + the method was called without any register/unregister action from the base class. The specified register method has to do all register operations + + + + + the method is called before the base class perform all register operation + + + + + the method was called when the base class register operations are done + + + + + Mark a static method as Register method. the method need the following signature public void Register(Type type, RegisterCall callType) + + + + + Register Call Condition + + + + + Creates an instance of the attribute + + register call condition + + + + Specify an embedded XML File for RibbonUI + + + + + Full qualified location + + + + + Creates an instance of the Attribute + + Full qualified location + + + + some helper methods (also for visual basic) + + + + + lock instance to perform threadsafe operations + + + + + checks value is null or nothing. + + check value + true if null + + + + returns enumerator with com proxies + + + + + + + returns enumerator with com proxies + + + + + + + returns enumerator with scalar variables + + + + + + + returns enumerator with scalar variables + + + + + + + Shared Default Invoker + + + + + Provides Attribute Helper functions + + + + + Anyalyze first parameter and returns the register error method delegate if exists + + Type of target addin + delegate or null + + + + Looks for a method with the RegisterErrorHandlerFunctionAttribute + + the type you want looking for the method + the method when its found + the attribute when its found + true when the method was found + + + + Looks for a method with the RegisterFunctionAttribute + + the type you want looking for the method + the method when its found + the attribute when its found + true when the method was found + + + + Looks for a method with the UnRegisterFunctionAttribute + + the type you want looking for the method + the method when its found + the attribute when its found + true when the method was found + + + + Looks for the CustomUIAttribute + + the type you want looking for the attribute + CustomUIAttribute or null + + + + Looks for the CustomPaneAttribute + + the type you want looking for the attribute + CustomPaneAttribute or null + + + + Looks for the GuidAttribute. Throws an exception if not found + + the type you want looking for the attribute + GuidAttribute + + + + Looks for the ProgIdAttribute. Throws an exception if not found + + the type you want looking for the attribute + ProgIdAttribute + + + Looks for the TweakAttribute. + + the type you want looking for the attribute + + TweakAttribute + + + + Looks for the RegistryLocationAttribute. Returns a default RegistryLocationAttribute(CurrentUser) if not found + + the type you want looking for the attribute + RegistryLocationAttribute + + + + Looks for the COMAddinAttribute. + + the type you want looking for the attribute + COMAddinAttribute + + + + Enumerate Top Level Windows on Desktop + + + + + Creates an instance of the class + + optional class name filter or null + + + + Enumerates all top level windows on desktop. WARNING: The method returns null if operation timeout is reached. + + a timeout for the operation. when a desktop windows is busy or non responding these method freeze. you can handle this with the operation timeout + result array or null + + + + Optional class name filter or null + + + + + Core Settings + + + + + Creates an instance of the class + + + + + Shared Default Settings + + + + + Enable the NetOffice COM proxy management. true by default + + + + + NetOffice wrap all thrown exceptions from Office applications in a COMException. + This option can be used to set the top level exception message or copy the innerst message to top. + + + + + NetOffice wrap all thrown exceptions from Office applications in a COMException. + This is the default message for the top level exception + + + + + Used Thread Culture given in the invoke calls. en-US by default + + + + + Get or set the Event support. true by default + + + + + A predefined implementation of IMessageFilter + + + + + Get or set the Quit method for an application object was automaticly called while Dispose. false by default + + + + + Get or set the core api checks at runtime the target method or property is supported in current version. if it doesnt a EntityNotSupportedException is thrown. false by default + + + + + Get or set Factory.Initialize() try to load non loaded dependend assemblies to fetch type informations. true by default + + + + + Get or set the Initialize method perform a deep level analyzing(may cause security issues) + + + + + Get or set NetOffice logs essential system steps in the DebugConsole(if enabled). true by default + + + + + Get or set NetOffice logs essential system steps for event operations in the DebugConsole(if enabled). false by default + + + + + Get or set NetOffice logs the current proxy count from a core factory to a ConsoleMonitor channel + + + + + A ConsoleMonitor channel name for the option EnableProxyCountChannel + + + + + Get or set Factory.Initialize() try to load non loaded dependend assemblies to fetch type informations. KeepExistingCacheAlive by default + + + + + Get or set NetOffice spend custom overloads for the "==" and "!=" operators for semanticly comparsion. true by default + + + + + Mark a static method as error handler for COMAddin methods. The static method need the following signature: public static void ErrorHandler(RegisterErrorMethodKind methodKind, Exception exception) + Rethrow the exception(second argument) in the method body to the runtime system if you want signalize an error to the environment(typical not wanted) + + + + + Indicates in which method the error is occured + + + + + the error is occured in the Register operation + + + + + the error is occured in the Unregister operation + + + + + Indicates assembly is a NetOffice api assembly + + + + + version + + + + + creates instance + + + + + + Used in IDTExtensibility2 interface + + + + + The add-in was loaded after Application started. + + + + + The add-in was loaded when Application started. + + + + + The add-in was loaded by an external client. + + + + + The add-in was loaded from the command line. + + + + + The add-in was loaded with a solution. + + + + + The add-in was loaded for user interface setup. + + + + + Used in IDTExtensibility2 interface + + + + + The add-in was unloaded when Application was shut down. + + + + + The add-in was unloaded while Application was running. + + + + + The add-in was unloaded after the user interface was set up. + + + + + The add-in was unloaded when the solution was closed. + + + + + The well known Extensibility + + + + + Occurs whenever an add-in is loaded into MS-Office + + A reference to an instance of the office application + An ext_ConnectMode enumeration value that indicates the way the add-in was loaded into MS-Office + An AddIn reference to the add-in's own instance. This is stored for later use, such as determining the parent collection for the add-in + An empty array that you can use to pass host-specific data for use in the add-in + + + + Occurs whenever an add-in is unloaded from MS Office + + An ext_DisconnectMode enumeration value that informs an add-in why it was unloaded. + An empty array that you can use to pass host-specific data for use after the add-in unloads + + + + Occurs whenever an add-in is loaded or unloaded from MS Office + + An empty array that you can use to pass host-specific data for use in the add-in + + + + Occurs whenever an add-in, which is set to load when MS Office starts, loads. + + An empty array that you can use to pass host-specific data for use when the add-in loads + + + + Occurs whenever MS Office shuts down while an add-in is running + + An empty array that you can use to pass host-specific data for use in the add-in + + + + Invoke helper functions + + + + + lock field to perform thread safe operations + + + + + Creates an instance of the class + + parent factory + + + + Creates an instance of the class + + + + + perform method as latebind call without parameters + + target object + name of method + + + + perform method as latebind call without parameters + + target proxy + name of method + + + + perform method as latebind call with parameters + + target object + name of method + array with parameters + + + + perform method as latebind call with parameters + + target object + name of method + array with parameters + + + + perform method as latebind call with parameters + + target proxy + name of method + array with parameters + + + + perform method as latebind call with parameters and parameter modifiers to use ref parameter(s) + + target object + name of method + array with parameters + ararry with modifiers correspond paramsArray + + + + perform method as latebind call with return value + + target object + name of method + any return value + + + + perform method as latebind call with return value + + target object + name of method + array with parameters + any return value + + + + perform method as latebind call with return value + + target object + name of method + array with parameters + any return value + + + + perform method as latebind call with return value + + target object + name of method + array with parameters + ararry with modifiers correspond paramsArray + any return value + + + + perform method as latebind call without parameters + + target object + name of method + + + + perform method as latebind call without parameters + + target proxy + name of method + + + + perform method as latebind call with parameters + + target object + name of method + array with parameters + + + + perform method as latebind call with parameters + + target object + name of method + array with parameters + + + + perform method as latebind call with parameters + + target proxy + name of method + array with parameters + + + + perform method as latebind call with parameters and parameter modifiers to use ref parameter(s) + + target object + name of method + array with parameters + ararry with modifiers correspond paramsArray + + + + perform method as latebind call with return value + + target object + name of method + any return value + + + + perform method as latebind call with return value + + target object + name of method + array with parameters + any return value + + + + perform method as latebind call with return value + + target object + name of method + array with parameters + any return value + + + + perform method as latebind call with return value + + target object + name of method + array with parameters + ararry with modifiers correspond paramsArray + any return value + + + + perform property get as latebind call with return value + + target proxy + name of property + any return value + + + + perform property get as latebind call with return value + + target object + name of property + any return value + + + + perform property get as latebind call with return value + + target proxy + name of property + array with parameters + any return value + + + + perform property get as latebind call with return value + + target object + name of property + array with parameters + any return value + + + + perform property get as latebind call with return value + + target object + name of property + array with parameters + any return value + + + + perform property get as latebind call with return value + + target object + name of property + array with parameters + ararry with modifiers correspond paramsArray + any return value + + + + perform property set as latebind call + + target object + name of property + array with parameters + value to be set + + + + perform property set as latebind call + + target object + name of property + array with parameters + value to be set + array with modifiers correspond paramsArray + + + + perform property set as latebind call + + target object + name of property + value to be set + + + + perform property set as latebind call + + target object + name of property + value to be set + array with modifiers correspond paramsArray + + + + perform property set as latebind call + + target object + name of property + value array to be set + array with modifiers correspond paramsArray + + + + perform property set as latebind call + + comobject instance + name of the property + new value of the property + + + + create parameter modifiers array + + parameter is given as ref(ByRef in Visual Basic) + + + + + replace null with Type.Missing, replace COMObject with COMObject.UnderlyingObject + + value to check + validated value + + + + calls ValidateParam for every array item + + array with parameters + + + + calls dipose in case if param is COMObject, calls Marshal.ReleaseComObject in case of param is a COM proxy + + + + + calls ReleaseParam for every array item + + any value array + + + + copy the param array or returns null if paramsArray not set + + array with parameters + array copy or null + + + + copy the param array or returns null if paramsArray not set + + ararry with modifiers correspond paramsArray + array with parameters + array copy or null + + + + Shared Default Invoker + + + + + Returns info this invoker is the default instance + + + + + Parent Factory + + + + + Associated DebugConsole + + + + + Associated Settings + + + + + represents a managed COM proxy + + + + + the well know IUnknown Interface ID + + + + + returns parent instance + + + + + returns Type of native proxy + + + + + returns the native wrapped proxy + + + + + returns instance is an enumerator + + + + + returns instance implement quit method and dispose call them automaticly + + + + + returns instance is currently in disposing progress + + + + + returns instance is diposed means unusable + + + + + child instance List + + + + + list of runtime supported entities + + + + + monitor lock object for accessing the child list + + + + + creates instance and replace the given replacedObject in proxy management + all created childs from replacedObject are now childs from the new instance + + current factory instance or null for default + the instance you want replace in current NO proxy management + + + + creates instance and replace the given replacedObject in proxy management + all created childs from replacedObject are now childs from the new instance + + the instance you want replace in current NO proxy management + + + + creates new instance with given proxy + + current factory instance or null for default + the now wrapped comProxy root instance + + + + creates new instance with given proxy and parent info + + the parent instance where you have these instance from + the now wrapped comProxy instance + + + + creates new instance with given proxy + + the now wrapped comProxy instance + + + + creates new instance with given proxy and parent info + + current factory instance or null for default + the parent instance where you have these instance from + the now wrapped comProxy instance + + + + creates new instance with given proxy, parent info and info instance is an enumerator + + current factory instance or null for default + the parent instance where you have these instance from + the now wrapped comProxy instance + + + + + creates new instance with given proxy, type info and parent info + + current factory instance or null for default + the parent instance where you have these instance from + the now wrapped comProxy instance + typeinfo from comProy if you have or null + + + + creates new instance with given proxy, type info and parent info + + the parent instance where you have these instance from + the now wrapped comProxy instance + typeinfo from comProy if you have or null + + + + creates a new instace with progid + + current factory instance + registered ProgID + + + + creates a new instace with progid + + registered ProgID + + + + not usable stub constructor + + + + + NetOffice method: returns information the proxy provides a method or property with given name at runtime + + name of the enitity + true if available, otherwise false + + + + NetOffice method: returns information the proxy provides a method or property with given name at runtime + + name of the enitity + limit searching for method or property + true if available, otherwise false + + + + NetOffice method: create object from progid + + + + + + NetOffice method: add object to child list + + target child instance + + + + remove object to child list + + target child instance + + + + NetOffice method: release com proxy + + + + + calls Quit for a proxy + + + + + + + + Calls the OnDispose event as service for client callers + + + + + + NetOffice method: dispose instance and all child instances + + dispose event exported proxies with one or more event recipients + + + + NetOffice method: dispose instance and all child instances + + + + + NetOffice method: dispose all child instances + + dispose proxies with events and one or more event recipients + + + + NetOffice method: dispose all child instances + + + + + Serves as a hash function for a particular type. + + System.Int32 instance + + + + Returns a string that represents the current object. + + System.String instance + + + + Determines whether two Object instances are equal. + + true if equal, otherwise false + + + + Determines whether two COMObject instances are equal. + + target instance to compare + true if equal, otherwise false + + + + Gets a Type object that represents the specified type. + + + + + + Determines whether two COMObject instances are equal. + + + + + + + + Determines whether two COMObject instances are equal. + + + + + + + + Determines whether two COMObject instances are equal. + + first instance + second instance + true if equal, otherwise false + + + + Determines whether two COMObject instances are not equal. + + first instance + second instance + true if equal, otherwise false + + + + Determines whether two COMObject instances are not equal. + + first instance + second instance + true if equal, otherwise false + + + + Determines whether two COMObject instances are not equal. + + first instance + second instance + true if equal, otherwise false + + + + always null (Nothing in Visual Basic) + + + + + NetOffice property: the associated factory + + + + + NetOffice property: the associated invoker + + + + + NetOffice property: the associated console + + + + + NetOffice property: the associated settings + + + + + NetOffice property: returns the native wrapped proxy + + + + + NetOffice property: returns friendly name for the instance type + + + + + NetOffice property: returns class name of native wrapped proxy + + + + + NetOffice property: returns component name of native wrapped proxy + + + + + NetOffice property: returns instance is diposed means unusable + + + + + NetOffice property: returns Type of native proxy + + + + + NetOffice property: returns parent proxy object + + + + + NetOffice property: returns instance is currently in diposing progress + + + + + Child instances + + + + + NetOffice property: returns instance export events + + + + + NetOffice property: returns event bridge is advised + + + + + NetOffice property: retuns instance has one or more event recipients + + + + + NetOffice event: these event was called from Dispose and you can skip the dipose operation here if you want. the event can be helpful for troubleshooting if you dont know why your objects beeing disposed + + + + + specifiy possible registry locations + + + + + CurrentUser Key + + + + + LocalMachineKey (permissions required) + + + + + Specify the addin registry keys for office was created in the Machine key or current user + + + + + Registry Location + + + + + Creates an instance of the attribute + + Registry location + + + + Tweak Handler to customize some settings at runtime (if wanted) + + + + + Creates no instance of the class + + + + + Analyze a COMAddin for the TweakAttribute and try to set given arguments(registry) if exists + + current used factory or null for default + COMAddin instance + Type info from COMAddin instance + specific office registry key endpoint + + + + Dispose applied tweaks for COMAddin instance + + current used factory or null for default + COMAddin instance + Type info from COMAddin instance + + + + Returns info the regkey value name is addin standard or NetOffice tweak + + target regky name + true if found + + + + Store applied custom teaks. int = GetHashCode() from COMAddin instance. Dictionary string string = name, value of applied tweak + + + + + COMObject ExpandableObjectConverter (for future use) + + + + + Try get the com application proxy from application window handle + + excel application window handle + com proxy or null + + + + Returns a list with application proxies + + main window handles + list of application proxies + + + + http://msdn.microsoft.com/en-us/library/windows/desktop/ms683793%28v=vs.85%29.aspx + + + + + A pointer to the IUnknown interface on the object + + + + + The identifier of the requested interface + + + + + The interface method + + + + + http://msdn.microsoft.com/en-us/library/windows/desktop/ms693740%28v=vs.85%29.aspx + + + + + Provides a single entry point for incoming calls. + + The type of incoming call that has been received. Possible values are from the enumeration CALLTYPE + The thread id of the caller + The elapsed tick count since the outgoing call was made, if dwCallType is not CALLTYPE_TOPLEVEL. If dwCallType is CALLTYPE_TOPLEVEL, dwTickCount should be ignored + A pointer to an INTERFACEINFO structure that identifies the object, interface, and method being called. In the case of DDE calls, lpInterfaceInfo can be NULL because the DDE layer does not return interface information. + + This method can return the following values + SERVERCALL_ISHANDLED - The application might be able to process the call + SERVERCALL_REJECTED - The application cannot handle the call due to an unforeseen problem, such as network unavailability, or if it is in the process of terminating + SERVERCALL_RETRYLATER - The application cannot handle the call at this time. An application might return this value when it is in a user-controlled modal state + + + + + Provides applications with an opportunity to display a dialog box offering retry, cancel, or task-switching options. + + The thread id of the called application + The number of elapsed ticks since the call was made + Specifies either SERVERCALL_REJECTED or SERVERCALL_RETRYLATER, as returned by the object application + + This method can return the following value + -1 - The call should be canceled. COM then returns RPC_E_CALL_REJECTED from the original method call + 0 ≤ value ≤ 100 - The call is to be retried immediately. + 100 ≤ value - COM will wait for this many milliseconds and then retry the call + + + + + Indicates that a message has arrived while COM is waiting to respond to a remote call. + + The thread id of the called application + The number of ticks since the call was made. It is calculated from the GetTickCount function + The type of call made during which a message or event was received. Possible values are from the enumeration PENDINGTYPE, where PENDINGTYPE_TOPLEVEL means the outgoing call was not nested within a call from another application and PENDINTGYPE_NESTED means the outgoing call was nested within a call from another application. + + This method can return the following values + PENDINGMSG_CANCELCALL - Cancel the outgoing call + PENDINGMSG_WAITNOPROCESS - Continue waiting for the reply, and do not dispatch the message unless it is a task-switching or window-activation message + PENDINGMSG_WAITDEFPROCESS - Keyboard and mouse messages are no longer dispatched. However there are some cases where mouse and keyboard messages could cause the system to deadlock, and in these cases, mouse and keyboard messages are discarded. WM_PAINT messages are dispatched + + + + + Specify the filter for an RetryMessageFilter instance + + + + + Try rejected call again immediately + + + + + Try rejected call again after few milliseconds + + + + + Dont try rejected call again + + + + + Specify log behaviour for an RetryMessageFilter instance + + + + + Disable Log + + + + + Call DebugConsole.WriteLine in IMessageFilter.RetryRejectedCall + + + + + Call DebugConsole.WriteLine in IMessageFilter.MessagePending + + + + + Call DebugConsole.WriteLine in IMessageFilter.RetryRejectedCall and IMessageFilter.MessagePending + + + + + An IMessageFilter Implementation + Learn more about: http://netoffice.codeplex.com/wikipage?title=Settings.MessageFilter_EN + + + + + Get or set the message filter is enabled + + + + + Get or set retry options + + + + + Get or set log options + + + + + Mark a static method as UnRegister method. the method need the following signature public void UnRegister(Type type, RegisterCall callType) + + + + + Register Call Condition + + + + + Creates an instance of the attribute + + register call condition + + + + Activate COMAddin tweak options. you can add various values in the office add-in regristry location + to customize NetOffice diagnostic/log settings at runtime. This can be very helpful in troubleshooting. + See tweak overview here: http://netoffice.codeplex.com/wikipage?title=Tweaks_EN + + + + + Enable or disable possible tweaking is possible + + + + + Creates an instance of the class + + Enable or disable possible tweaking is possible + + + + This enumerator is not supported from the com proxy instance, its a custom service from NetOffice + + + + + Eine stark typisierte Ressourcenklasse zum Suchen von lokalisierten Zeichenfolgen usw. + + + + + Gibt die zwischengespeicherte ResourceManager-Instanz zurück, die von dieser Klasse verwendet wird. + + + + + Überschreibt die CurrentUICulture-Eigenschaft des aktuellen Threads für alle + Ressourcenzuordnungen, die diese stark typisierte Ressourcenklasse verwenden. + + + + + ROT Wrapper + + + + + some office applications in specific version use the "Microsoft" prefix in the COM server name + + + + + returns a running com proxy from the running object table. the method takes the first proxy there matched with the input parameters. + WARNING: the method returns always the first com proxy from the running object table if multiple (match) proxies exists. + + component name, for example Excel + class name, for example Application + throw an exception if no proxy was found + a native COM proxy + + + + returns all running com proxies from the running object table there matched with the input parameters + WARNING: the method returns always the first com proxy from the running object table if multiple (match) proxies exists. A fix is implemented for MS-Excel only + + component name, for example Excel + class name, for example Application + COM proxy list + + + + signals an exception occured in NetOffice.dll, not in corresonding NetOffice assembly + + + + + creates instance + + given exception info + + + + creates instance + + given exception info + inner exception + + + + Indicates original type of entity + + + + + entity is class + + + + + entity is dispatch interface + + + + + entity is interface + + + + + entity is module + + + + + entity is enum + + + + + entity is struct + + + + + entity is const module + + + + + Indicates original type of entity in COM Type Library + + + + + returns type of entity + + + + + creates instance + + + + + + EventBinding Interface + + + + + retuns instance has one or more event recipients + + + + + returns recipient delegates for an event + + name of the even + recipients delegates + + + + retuns instance has one or more event recipients for a specific event + + name of the event + the count of recipients + + + + call a specific event for all recipients + + name of the event + argument array + count of recipients + + + + Create the event eventbridge for the object + + + + + Dispose the event eventbridge for the object + + + + + returns event bridge is advised + + + + + Indicates which COM Type Library Version supports the entity + + + + + returns library name + + + + + returns all supported library versions of entity + + + + + creates instance + + name of the library + version of the library + + + + Cache options for the Factory->Initialize method + + + + + clear current infos about existing types and and loaded NetOffice assemblies + + + + + any new infos in Initialize was added to the existing cache + + + + + Specify a custom task pane + + + + + Type of the custom task pane + + + + + Pane Title (Default is Pane Type Name) + + + + + Pane Visibility (Default is true) + + + + + Pane dock alignment direction (Default is Right) + + + + + Pane dock alignment restriction (Default is None) + + + + + Pane Width (Default is 150) + + + + + Pane Height (Default is 150) + + + + + Creates an instance of the Attribute + + type of the custom task pane + + + + Creates an instance of the Attribute + + type of the custom task pane + pane caption + + + + Creates an instance of the Attribute + + type of the custom task pane + pane caption + pane visibility + + + + Creates an instance of the Attribute + + pane caption + pane visibility + type of the custom task pane + pane dock alignment direction + + + + Creates an instance of the Attribute + + type of the custom task pane + pane caption + pane visibility + pane dock alignment direction + pane dock alignment restriction + + + + Creates an instance of the Attribute + + type of the custom task pane + pane caption + pane visibility + pane dock alignment direction + pane dock alignment restriction + pane width + pane height + + + + SupportByVersion Office 12, 14, 15 + + + + + SupportByVersion Office 12, 14, 15 + + + + + SupportByVersion Office 12, 14, 15 + + + + + SupportByVersion Office 12, 14, 15 + + + + + SupportByVersion Office 12, 14, 15 + + + + + SupportByVersion Office 12, 14, 15 + + + + + SupportByVersion Office 12, 14, 15 + + + + + SupportByVersion Office 12, 14, 15 + + + + + SupportByVersion Office 12, 14, 15 + + + + + SupportByVersion Office 12, 14, 15 + + + + + SupportByVersion Office 12, 14, 15 + + + + + offers various debug, log and diagnostic functionality + + + + + clears message buffer + + + + + write log message + + + + + + + write log message + + + + + + write exception log message + + + + + + Send a message to the NOTools.Console monitor pipe + + name for the console(must exclude the '?' char) or null for default console + the given message as any + entry id for the log message if arrived, otherwise null + + + + Send a message to the NOTools.Console monitor pipe + + name for the console(must exclude the '?' char) or null for default console + the given message as any + parent message id. the console monitor can show a hierarchy with these info + entry id for the log message if arrived, otherwise null + + + + Send a channel message to the NOTools.Console monitor pipe + + channel id string. the argument must exclude the '?' character + the given message as any + entry id for the log message if arrived, otherwise null + + + + Send a message to the NOTools.Console monitor pipe + + given message as any + parent loghandle + entry id for the log message if arrived, otherwise null + + + + Send a channel message to the NOTools.Console monitor pipe + + channel id string. the argument must exclude the '?' character + the given message as any + true if send + + + + append message to logfile + + + + + + convert an exception to a string + + + + + + + Shared Default Instance + + + + + Name of the Console instance + + + + + append current time information in messages + + + + + operation mode + + + + + send a all messages to a named pipe. Use the NOTools.ConsoleMonitor to observe the console + + + + + Specify the shared output connection technique (currently ipc named pipes only. for future use to enable network and db logging) + + + + + PipeConnection to NOTools.ConsoleMonitor + + + + + name full file path and name of a logfile, must be set if Mode == LogFile + + + + + returns all collected messages if Mode == MemoryList + + + + + Specify essential COMAddin informations + + + + + Display Name for the Addin + + + + + Description for the Addin + + + + + LoadBehavior for the Addin + + + + + Gives info the Addin is commandline safe + + + + + Creates an instance of the attribute + + Display Name for the Addin + Description for the Addin + LoadBehavior for the Addin + + + + Creates an instance of the attribute + + Display Name for the Addin + Description for the Addin + LoadBehavior for the Addin + Gives info the Addin is commandline safe + + + + DebugConsole operation mode + + + + + debug log are not enabled + + + + + debug log was redirected to System.Console + + + + + debug log append to a logfile + + + + + hold all debug and exceptions logs in a internal string list + + + + + debug log was redirected to System.Diagnostics.Trace + + + + + OnStartupComplete Event Handler + + custom arguments + + + + OnDisconnection Event Handler + + kind of remove + custom arguments + + + + OnConnection Event Handler + + application host instance + kind of connect + addin instance + custom arguments + + + + OnAddInsUpdate Event Handler + + custom arguments + + + + OnBeginShutdown Event Handler + + custom arguments + + + + Sink Helper Base Class for an Event Interface Sink helper class + + + + + creates instance + + + + + + try to find connection point by FindConnectionPoint + + + + + + + + + + try to find connection point by EnumConnectionPoints + + + + + + + + + + get supported connection point from comProxy + + + + + + + + + get supported connection point from comProxy in reverse order to GetConnectionPoint + + + + + + + + + Dispose all active event bridges + + + + + create event binding + + + + + + release event binding + + + + + release event binding + + + + + remove eventbinding + + + + + Send a message to specific console + + name of the console. use null for main console + given message as any + loghandle from server if recieved + + + + Send a message to specific console + + name of the console. use null for main console + given message as any + parent loghandle or null + loghandle from server if recieved + + + + Send a message to specific channel + + name of the channel + given message as any + loghandle from server if recieved + + + + Signals the target method or property is not supported from the COM proxy in the current version + + + + + creates instance + + + + + + Shared output connection technique + + + + + IPC named pipes + + + + + NetOffice wrap all thrown exceptions from Office applications in a COMException. This enum can be used to set the exception message + + + + + The standard message from NetOffice.Settings.Exception + + + + + The message from the source exception + + + + + All inner exception messages as a summary + + + + + search parameter for the EntityIsAvailable Method + + + + + looking for a method or a property + + + + + looking for a property only + + + + + looking for a method only + + + + + Indicates in which method the error is occured + + + + + the error is occured in void IDTExtensibility2.OnStartupComplete(ref Array custom) + + + + + the error is occured in void IDTExtensibility2.OnDisconnection(ext_DisconnectMode RemoveMode, ref Array custom) + + + + + the error is occured in void IDTExtensibility2.OnConnection(object Application, ext_ConnectMode ConnectMode, object AddInInst, ref Array custom) + + + + + the error is occured in void IDTExtensibility2.OnAddInsUpdate(ref Array custom) + + + + + the error is occured in void IDTExtensibility2.OnBeginShutdown(ref Array custom) + + + + + the error is occured in public virtual string GetCustomUI(string RibbonID) + + + + + the error is occured in public virtual void CTPFactoryAvailable(object CTPFactoryInst) + + + + + the error is occured in protected virtual Factory CreateFactory() + + + + + This method is a custom overload from NetOffice + + + + + info about a NetOffice assembly + + + + + returns info a class with given name exists in NetOfficeApi assembly + + + + + + + namespace of assembly + + + + + guid of component there represents the NetOfficeApi assembly + + + + + assembly info of NetOfficeApi assembly + + + + + returns a name array of dependent NetOfficeApi assemblies + + + + + event args for OnDispose + + + + + creates a new instance + + the target COM object + + + + the target COM object + + + + + Skip flag, you can cancel the operation if you want + + + + + EventHandler delegate for COMObject.OnDispose + + + + + + dependent assembly description + + + + + Exposes objects, methods and properties to programming tools and other applications that support Automation. COM components implement the IDispatch interface to enable access by Automation clients, such as Visual Basic. + + + + + Retrieves the number of type information interfaces that an object provides (either 0 or 1) + + + This method can return one of these values + S_OK - Success + E_NOTIMPL - Failure + + + + + Retrieves the type information for an object, which can then be used to get the type information for an interface + + The type information to return. Pass 0 to retrieve type information for the IDispatch implementation + The locale identifier for the type information. An object may be able to return different type information for different languages. This is important for classes that support localized member names. For classes that do not support localized member names, this parameter can be ignored + The requested type information object + + + + Maps a single member and an optional set of argument names to a corresponding set of integer DISPIDs, which can be used on subsequent calls to Invoke. + + Reserved for future use. Must be IID_NULL + The array of names to be mapped + The count of the names to be mapped + The locale context in which to interpret the names + Caller-allocated array, each element of which contains an identifier (ID) corresponding to one of the names passed in the rgszNames array. The first element represents the member name. The subsequent elements represent each of the member's parameters + + This method can return one of these values + S_OK - Success + E_OUTOFMEMORY - Out of memory + DISP_E_UNKNOWNNAME - One or more of the specified names were not known. The returned array of DISPIDs contains DISPID_UNKNOWN for each entry that corresponds to an unknown name + DISP_E_UNKNOWNLCID + - The locale identifier (LCID) was not recognized + + + + Provides access to properties and methods exposed by an object + + Identifies the member. Use GetIDsOfNames or the object's documentation to obtain the dispatch identifier. + Reserved for future use. Must be IID_NULL + The locale context in which to interpret arguments. The lcid is used by the GetIDsOfNames function, and is also passed to Invoke to allow the object to interpret its arguments specific to a locale + Flags describing the context of the Invoke call + Pointer to a DISPPARAMS structure containing an array of arguments, an array of argument DISPIDs for named arguments, and counts for the number of elements in the array + Pointer to the location where the result is to be stored, or NULL if the caller expects no result. This argument is ignored if DISPATCH_PROPERTYPUT or DISPATCH_PROPERTYPUTREF is specified + Pointer to a structure that contains exception information. This structure should be filled in if DISP_E_EXCEPTION is returned. Can be NULL + The index within rgvarg of the first argument that has an error. Arguments are stored in pDispParams->rgvarg in reverse order, so the first argument is the one with the highest index in the array. This parameter is returned only when the resulting return value is DISP_E_TYPEMISMATCH or DISP_E_PARAMNOTFOUND. This argument can be set to null + + See http://msdn.microsoft.com/de-de/library/windows/desktop/ms221479%28v=vs.85%29.aspx + + + + + Creation Factory for COMObject and derived types + + + + + Creates an instance of the class + + + + + Creates an instance of the class + + Mark this instance as default instance + + + + Raise the ProxyCountChanged event (and optional, send channel message to console) + + current count of open com proxies + + + + Must be called from client assembly for COMObject Support + Recieve factory infos from all loaded NetOfficeApi Assemblies in current application domain + + + + + Must be called from client assembly for COMObject Support + Recieve factory infos from all loaded NetOfficeApi Assemblies in current application domain + NetOffice cache options + + + + + analyze assemblies in current appdomain and connect all NetOffice assemblies to the core runtime + + + + + analyze loaded NetOffice assemblies and add dependent assemblies to the runtime if necessary + + + + + clears proxy/type/wrapper/assembly cache etc. + + + + + Check for inialize state and call Initialze if its necessary + + + + + clears factory informations List + + + + + creates an entity support list for a proxy + + + + + + + creates a new COMObject based on wrapperClassType + + parent there have created comProxy + new created proxy + type info from wrapper class + corresponding wrapper class instance or plain COMObject + + + + creates a new COMObject array based on wrapperClassType + + parent there have created comProxy + new created proxies + type info from wrapper class + corresponding wrapper class instances or plain COMObject + + + + creates a new COMObject based on classType of comProxy + + parent there have created comProxy + new created proxy + corresponding wrapper class instance or plain COMObject + + + + creates a new COMObject based on classType of comProxy + + parent there have created comProxy + new created proxy + Type of comProxy + corresponding Wrapper class Instance or plain COMObject + + + + creates a new COMObject from factoryInfo + + Factory Info from Wrapper Assemblies + parent there have created comProxy + new created proxy + Type of comProxy + name of COMServer proxy class + full namespace and name of COMServer proxy class + corresponding Wrapper class Instance or plain COMObject + + + + creates a new COMObject array + + parent there have created comProxy + new created proxy array + corresponding Wrapper class Instance array or plain COMObject array + + + + dispose all open objects + + + + + add object to global list + + com wrapper instance + + + + remove object from global list + + com wrapper instance + + + + returns info the assembly is a NetOffice Api Assembly + + assembly informations + true if NetOffice assembly, otherwise false + + + + returns info the assembly is a NetOffice Api Assembly with known keytoken + + assembly informations + true if NetOffice assembly with token, otherwise false + + + + check for loaded assembly in factory list + + name of the assembly + true if exists, otherwise false + + + + add assembly to list + + name of the assembly + assemmbly to add + list of dependend assemblies + + + + returns id of an interface + + com type informations + internface id(iid) + + + + get the guid from type lib there is the type defined + + new created proxy + guid from containing component + + + + get wrapper class factory info + + new created proxy + factory info from corresponding assembly + + + + Occurs when the resolution of an assembly fails. + + The source of the event + A System.ResolveEventArgs that contains the event data + The System.Reflection.Assembly that resolves the type, assembly, or resource or null if the assembly cannot be resolved + + + + Assembly loader for multitargeting(host) scenarios + + full file name + assembly instance or null + + + + returns the Type for comProxy or null if param not set + + new created proxy + type info or null if unkown + + + + Returns info about intialized state + + + + + Shared Default Core + + + + + Core Settings + + + + + Core Console + + + + + Core Invoker + + + + + Returns the instance ist the shared default core + + + + + returns an array about currently loaded NetOfficeApi assemblies + + + + + Returns current count of open proxies + + + + + notify info the count of proxies there open are changed + in case of notify comes from event trigger created proxy the call comes from other thread + + + + + contains a list of all known netoffice + + + + + ProxyCountChanged delegate + + current count of com proxies + + + diff --git a/plugin_outlook/static/openerp-outlook-plugin/packages/NetOffice.Core.Net35.1.7.2.0/lib/net35/OfficeApi.dll b/plugin_outlook/static/openerp-outlook-plugin/packages/NetOffice.Core.Net35.1.7.2.0/lib/net35/OfficeApi.dll new file mode 100644 index 00000000..bbca13a5 Binary files /dev/null and b/plugin_outlook/static/openerp-outlook-plugin/packages/NetOffice.Core.Net35.1.7.2.0/lib/net35/OfficeApi.dll differ diff --git a/plugin_outlook/static/openerp-outlook-plugin/packages/NetOffice.Core.Net35.1.7.2.0/lib/net35/OfficeApi.xml b/plugin_outlook/static/openerp-outlook-plugin/packages/NetOffice.Core.Net35.1.7.2.0/lib/net35/OfficeApi.xml new file mode 100644 index 00000000..16996aa8 --- /dev/null +++ b/plugin_outlook/static/openerp-outlook-plugin/packages/NetOffice.Core.Net35.1.7.2.0/lib/net35/OfficeApi.xml @@ -0,0 +1,49936 @@ + + + + OfficeApi + + + + + DispatchInterface TabStop2 + SupportByVersion Office, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865574.aspx + + + + + DispatchInterface _IMsoDispObj + SupportByVersion Office, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860567.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864954.aspx + Unknown COM Proxy + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863842.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863120.aspx + + + + + DispatchInterface IMsoSeriesLines + SupportByVersion Office, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 14, 15 + Get + + + + + DispatchInterface Font2 + SupportByVersion Office, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863065.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863709.aspx + Unknown COM Proxy + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863752.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862849.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863493.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861791.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863105.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863122.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860509.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862358.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861477.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862197.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862156.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861475.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862089.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864023.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863084.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863779.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863373.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860293.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861108.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862496.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865282.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862858.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864695.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863094.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863530.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863998.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862808.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863096.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865572.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860271.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863079.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861234.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862069.aspx + + + + + DispatchInterface SoftEdgeFormat + SupportByVersion Office, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863361.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865253.aspx + + + + + SupportByVersion Office 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862536.aspx + + + + + DispatchInterface ICustomXMLPartsEvents + SupportByVersion Office, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + + + NetOffice.OfficeApi.CustomXMLPart NewPart + + + + SupportByVersion Office 12, 14, 15 + + + NetOffice.OfficeApi.CustomXMLPart OldPart + + + + SupportByVersion Office 12, 14, 15 + + + NetOffice.OfficeApi.CustomXMLPart Part + + + + DispatchInterface _CustomXMLPart + SupportByVersion Office, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864167.aspx + + NetOffice.OfficeApi.CustomXMLNode Parent + optional string Name = + optional string NamespaceURI = + optional NetOffice.OfficeApi.CustomXMLNode NextSibling = 0 + optional NetOffice.OfficeApi.Enums.MsoCustomXMLNodeType NodeType = 1 + optional string NodeValue = + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864167.aspx + + NetOffice.OfficeApi.CustomXMLNode Parent + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864167.aspx + + NetOffice.OfficeApi.CustomXMLNode Parent + optional string Name = + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864167.aspx + + NetOffice.OfficeApi.CustomXMLNode Parent + optional string Name = + optional string NamespaceURI = + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864167.aspx + + NetOffice.OfficeApi.CustomXMLNode Parent + optional string Name = + optional string NamespaceURI = + optional NetOffice.OfficeApi.CustomXMLNode NextSibling = 0 + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864167.aspx + + NetOffice.OfficeApi.CustomXMLNode Parent + optional string Name = + optional string NamespaceURI = + optional NetOffice.OfficeApi.CustomXMLNode NextSibling = 0 + optional NetOffice.OfficeApi.Enums.MsoCustomXMLNodeType NodeType = 1 + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861077.aspx + + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865466.aspx + + string FilePath + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865293.aspx + + string XML + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864156.aspx + + string XPath + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860915.aspx + + string XPath + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860227.aspx + Unknown COM Proxy + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862841.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862405.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860609.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862230.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861512.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860262.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860307.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865215.aspx + + + + + DispatchInterface SignatureProvider + SupportByVersion Office, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861225.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861157.aspx + + NetOffice.OfficeApi.Enums.SignatureLineImage siglnimg + NetOffice.OfficeApi.SignatureSetup psigsetup + NetOffice.OfficeApi.SignatureInfo psiginfo + object XmlDsigStream + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861424.aspx + + object ParentWindow + NetOffice.OfficeApi.SignatureSetup psigsetup + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864670.aspx + + object ParentWindow + NetOffice.OfficeApi.SignatureSetup psigsetup + NetOffice.OfficeApi.SignatureInfo psiginfo + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864683.aspx + + object QueryContinue + NetOffice.OfficeApi.SignatureSetup psigsetup + NetOffice.OfficeApi.SignatureInfo psiginfo + object XmlDsigStream + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860266.aspx + + object ParentWindow + NetOffice.OfficeApi.SignatureSetup psigsetup + NetOffice.OfficeApi.SignatureInfo psiginfo + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863028.aspx + + object QueryContinue + NetOffice.OfficeApi.SignatureSetup psigsetup + NetOffice.OfficeApi.SignatureInfo psiginfo + object XmlDsigStream + NetOffice.OfficeApi.Enums.ContentVerificationResults pcontverres + NetOffice.OfficeApi.Enums.CertificateVerificationResults pcertverres + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865248.aspx + + object ParentWindow + NetOffice.OfficeApi.SignatureSetup psigsetup + NetOffice.OfficeApi.SignatureInfo psiginfo + object XmlDsigStream + NetOffice.OfficeApi.Enums.ContentVerificationResults pcontverres + NetOffice.OfficeApi.Enums.CertificateVerificationResults pcertverres + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863646.aspx + + NetOffice.OfficeApi.Enums.SignatureProviderDetail sigprovdet + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862104.aspx + + object QueryContinue + object Stream + + + + DispatchInterface DocumentInspectors + SupportByVersion Office, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862820.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersionAttribute Office, 12,14,15 + + + + + SupportByVersionAttribute Office, 12,14,15 + + + + + SupportByVersion Office 12, 14, 15 + Get + + Int32 Index + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862541.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860327.aspx + Unknown COM Proxy + + + + + DispatchInterface SharedWorkspaceFiles + SupportByVersion Office, 11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862045.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864894.aspx + + string FileName + optional object ParentFolder + optional object OverwriteIfFileAlreadyExists + optional object KeepInSync + + + + SupportByVersion Office 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864894.aspx + + string FileName + + + + SupportByVersion Office 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864894.aspx + + string FileName + optional object ParentFolder + + + + SupportByVersion Office 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864894.aspx + + string FileName + optional object ParentFolder + optional object OverwriteIfFileAlreadyExists + + + + SupportByVersionAttribute Office, 11,12,14,15 + + + + + SupportByVersionAttribute Office, 11,12,14,15 + + + + + SupportByVersion Office 11, 12, 14, 15 + Get + + Int32 Index + + + + SupportByVersion Office 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864632.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864665.aspx + Unknown COM Proxy + + + + + SupportByVersion Office 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864597.aspx + + + + + DispatchInterface NewFile + SupportByVersion Office, 10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862417.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860279.aspx + + string FileName + optional object Section + optional object DisplayName + optional object Action + + + + SupportByVersion Office 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860279.aspx + + string FileName + + + + SupportByVersion Office 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860279.aspx + + string FileName + optional object Section + + + + SupportByVersion Office 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860279.aspx + + string FileName + optional object Section + optional object DisplayName + + + + SupportByVersion Office 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860573.aspx + + string FileName + optional object Section + optional object DisplayName + optional object Action + + + + SupportByVersion Office 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860573.aspx + + string FileName + + + + SupportByVersion Office 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860573.aspx + + string FileName + optional object Section + + + + SupportByVersion Office 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860573.aspx + + string FileName + optional object Section + optional object DisplayName + + + + DispatchInterface ODSOColumns + SupportByVersion Office, 10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865252.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersionAttribute Office, 10,11,12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersionAttribute Office, 10,11,12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865319.aspx + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863815.aspx + Unknown COM Proxy + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + object varIndex + + + + DispatchInterface COMAddIn + SupportByVersion Office, 9,10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864948.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865348.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865259.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860614.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863828.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860745.aspx + Unknown COM Proxy + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864953.aspx + Unknown COM Proxy + + + + + DispatchInterface AnswerWizardFiles + SupportByVersion Office, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + string FileName + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + string FileName + + + + SupportByVersionAttribute Office, 9,10,11,12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersionAttribute Office, 9,10,11,12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + Int32 Index + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + DispatchInterface TextFrame + SupportByVersion Office, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + DispatchInterface ShapeRange + SupportByVersion Office, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + NetOffice.OfficeApi.Enums.MsoAlignCmd AlignCmd + NetOffice.OfficeApi.Enums.MsoTriState RelativeTo + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + NetOffice.OfficeApi.Enums.MsoDistributeCmd DistributeCmd + NetOffice.OfficeApi.Enums.MsoTriState RelativeTo + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + NetOffice.OfficeApi.Enums.MsoFlipCmd FlipCmd + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Single Increment + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Single Increment + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Single Increment + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Single Factor + NetOffice.OfficeApi.Enums.MsoTriState RelativeToOriginalSize + optional NetOffice.OfficeApi.Enums.MsoScaleFrom fScale = 0 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Single Factor + NetOffice.OfficeApi.Enums.MsoTriState RelativeToOriginalSize + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Single Factor + NetOffice.OfficeApi.Enums.MsoTriState RelativeToOriginalSize + optional NetOffice.OfficeApi.Enums.MsoScaleFrom fScale = 0 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Single Factor + NetOffice.OfficeApi.Enums.MsoTriState RelativeToOriginalSize + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + optional object Replace + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + NetOffice.OfficeApi.Enums.MsoZOrderCmd ZOrderCmd + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + Single Increment + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + Single Increment + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + Single Increment + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + Single Increment + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 15 + + + NetOffice.OfficeApi.Enums.MsoMergeCmd MergeCmd + optional NetOffice.OfficeApi.Shape PrimaryShape = 0 + + + + SupportByVersion Office 15 + + + NetOffice.OfficeApi.Enums.MsoMergeCmd MergeCmd + + + + SupportByVersionAttribute Office, 9,10,11,12,14,15 + + + + + SupportByVersionAttribute Office, 9,10,11,12,14,15 + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + object Index + + + + Interface IMsoCategory + SupportByVersion Office, 15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 15 + Get + + + + + SupportByVersion Office 15 + Get/Set + + + + + SupportByVersion Office 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/jj229980.aspx + + + + SupportByVersion Office 15 + + -2 + + + + SupportByVersion Office 15 + + 1 + + + + SupportByVersion Office 15 + + 2 + + + + SupportByVersion Office 15 + + 3 + + + + SupportByVersion Office 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865568.aspx + + + + SupportByVersion Office 14, 15 + + 0 + + + + SupportByVersion Office 14, 15 + + 1 + + + + SupportByVersion Office 14, 15 + + 2 + + + + SupportByVersion Office 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860801.aspx + + + + SupportByVersion Office 14, 15 + + 0 + + + + SupportByVersion Office 14, 15 + + 1 + + + + SupportByVersion Office 14, 15 + + 2 + + + + SupportByVersion Office 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860574.aspx + + + + SupportByVersion Office 12, 14, 15 + + -2 + + + + SupportByVersion Office 12, 14, 15 + + 0 + + + + SupportByVersion Office 12, 14, 15 + + 1 + + + + SupportByVersion Office 12, 14, 15 + + 2 + + + + SupportByVersion Office 12, 14, 15 + + 3 + + + + SupportByVersion Office 12, 14, 15 + + 4 + + + + SupportByVersion Office 12, 14, 15 + + 5 + + + + SupportByVersion Office 12, 14, 15 + + 6 + + + + SupportByVersion Office 12, 14, 15 + + 7 + + + + SupportByVersion Office 12, 14, 15 + + 8 + + + + SupportByVersion Office 12, 14, 15 + + 9 + + + + SupportByVersion Office 12, 14, 15 + + 10 + + + + SupportByVersion Office 12, 14, 15 + + 11 + + + + SupportByVersion Office 12, 14, 15 + + 12 + + + + SupportByVersion Office 12, 14, 15 + + 13 + + + + SupportByVersion Office 12, 14, 15 + + 14 + + + + SupportByVersion Office 12, 14, 15 + + 15 + + + + SupportByVersion Office 12, 14, 15 + + 16 + + + + SupportByVersion Office 12, 14, 15 + + 17 + + + + SupportByVersion Office 12, 14, 15 + + 18 + + + + SupportByVersion Office 12, 14, 15 + + 19 + + + + SupportByVersion Office 12, 14, 15 + + 20 + + + + SupportByVersion Office 12, 14, 15 + + 21 + + + + SupportByVersion Office 12, 14, 15 + + 22 + + + + SupportByVersion Office 12, 14, 15 + + 23 + + + + SupportByVersion Office 12, 14, 15 + + 24 + + + + SupportByVersion Office 12, 14, 15 + + 25 + + + + SupportByVersion Office 12, 14, 15 + + 26 + + + + SupportByVersion Office 12, 14, 15 + + 27 + + + + SupportByVersion Office 12, 14, 15 + + 28 + + + + SupportByVersion Office 12, 14, 15 + + 29 + + + + SupportByVersion Office 12, 14, 15 + + 30 + + + + SupportByVersion Office 12, 14, 15 + + 31 + + + + SupportByVersion Office 12, 14, 15 + + 32 + + + + SupportByVersion Office 12, 14, 15 + + 33 + + + + SupportByVersion Office 12, 14, 15 + + 34 + + + + SupportByVersion Office 12, 14, 15 + + 35 + + + + SupportByVersion Office 12, 14, 15 + + 36 + + + + SupportByVersion Office 12, 14, 15 + + 37 + + + + SupportByVersion Office 12, 14, 15 + + 38 + + + + SupportByVersion Office 12, 14, 15 + + 39 + + + + SupportByVersion Office 12, 14, 15 + + 40 + + + + SupportByVersion Office 12, 14, 15 + + + + + SupportByVersion Office 12, 14, 15 + + 5 + + + + SupportByVersion Office 12, 14, 15 + + -4132 + + + + SupportByVersion Office 12, 14, 15 + + -4133 + + + + SupportByVersion Office 12, 14, 15 + + 6 + + + + SupportByVersion Office 12, 14, 15 + + 3 + + + + SupportByVersion Office 12, 14, 15 + + 4 + + + + SupportByVersion Office 12, 14, 15 + + + + + SupportByVersion Office 12, 14, 15 + + 1 + + + + SupportByVersion Office 12, 14, 15 + + 3 + + + + SupportByVersion Office 12, 14, 15 + + -4142 + + + + SupportByVersion Office 12, 14, 15 + + 2 + + + + SupportByVersion Office 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862831.aspx + + + + SupportByVersion Office 12, 14, 15 + + -2 + + + + SupportByVersion Office 12, 14, 15 + + 0 + + + + SupportByVersion Office 12, 14, 15 + + 1 + + + + SupportByVersion Office 12, 14, 15 + + 2 + + + + SupportByVersion Office 12, 14, 15 + + 3 + + + + SupportByVersion Office 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861180.aspx + + + + SupportByVersion Office 12, 14, 15 + + -2 + + + + SupportByVersion Office 12, 14, 15 + + 0 + + + + SupportByVersion Office 12, 14, 15 + + 1 + + + + SupportByVersion Office 12, 14, 15 + + 2 + + + + SupportByVersion Office 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862544.aspx + + + + SupportByVersion Office 12, 14, 15 + + -2 + + + + SupportByVersion Office 12, 14, 15 + + 0 + + + + SupportByVersion Office 12, 14, 15 + + 1 + + + + SupportByVersion Office 12, 14, 15 + + 2 + + + + SupportByVersion Office 12, 14, 15 + + 3 + + + + SupportByVersion Office 12, 14, 15 + + 4 + + + + SupportByVersion Office 12, 14, 15 + + 5 + + + + SupportByVersion Office 12, 14, 15 + + 6 + + + + SupportByVersion Office 12, 14, 15 + + 7 + + + + SupportByVersion Office 12, 14, 15 + + 8 + + + + SupportByVersion Office 12, 14, 15 + + 9 + + + + SupportByVersion Office 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860613.aspx + + + + SupportByVersion Office 12, 14, 15 + + -2 + + + + SupportByVersion Office 12, 14, 15 + + 0 + + + + SupportByVersion Office 12, 14, 15 + + 1 + + + + SupportByVersion Office 12, 14, 15 + + 2 + + + + SupportByVersion Office 12, 14, 15 + + 3 + + + + SupportByVersion Office 12, 14, 15 + + 4 + + + + SupportByVersion Office 12, 14, 15 + + 5 + + + + SupportByVersion Office 12, 14, 15 + + 6 + + + + SupportByVersion Office 12, 14, 15 + + 7 + + + + SupportByVersion Office 12, 14, 15 + + 8 + + + + SupportByVersion Office 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862493.aspx + + + + SupportByVersion Office 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 11, 12, 14, 15 + + 4 + + + + SupportByVersion Office 11, 12, 14, 15 + + 8 + + + + SupportByVersion Office 11, 12, 14, 15 + + 15 + + + + SupportByVersion Office 11, 12, 14, 15 + + 16 + + + + SupportByVersion Office 11, 12, 14, 15 + + 32 + + + + SupportByVersion Office 11, 12, 14, 15 + + 64 + + + + SupportByVersion Office 12, 14, 15 + + 127 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860880.aspx + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 874 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 932 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 936 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 949 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 950 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1200 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1201 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1250 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1251 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1252 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1253 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1254 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1255 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1256 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1257 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1258 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 50001 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 50932 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 50936 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 50949 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 50950 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 51251 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 51253 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 51256 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 28591 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 28592 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 28593 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 28594 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 28595 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 28596 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 28597 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 28598 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 28599 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 28605 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 50220 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 50221 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 50222 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 50225 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 50227 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 50229 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 10000 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 10001 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 10002 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 10003 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 10004 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 10005 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 10006 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 10007 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 10008 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 10010 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 10017 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 10029 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 10079 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 10081 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 10082 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 37 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 500 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 870 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 875 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1026 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 20273 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 20277 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 20278 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 20280 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 20284 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 20285 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 20290 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 20297 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 20420 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 20423 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 20424 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 20833 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 20838 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 20871 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 20905 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 20880 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 21025 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 50930 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 50931 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 50933 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 50935 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 50937 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 50939 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 437 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 737 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 775 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 850 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 852 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 855 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 857 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 860 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 861 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 862 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 863 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 864 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 865 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 866 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 869 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 51932 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 51936 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 51949 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 51950 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 708 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 720 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1361 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 20000 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 20001 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 20002 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 20003 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 20004 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 20005 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 20105 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 20106 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 20107 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 20108 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 20127 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 20261 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 20269 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 20866 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 21027 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 21866 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 29001 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 52936 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 65000 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 65001 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 57002 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 57003 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 57004 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 57005 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 57006 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 57007 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 57008 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 57009 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 57010 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 57011 + + + + SupportByVersion Office 11, 12, 14, 15 + + 38598 + + + + SupportByVersion Office 11, 12, 14, 15 + + 54936 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864676.aspx + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + -1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863353.aspx + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + -2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 4 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 5 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 6 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 7 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 8 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 9 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 10 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 11 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 12 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 13 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 14 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 15 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 16 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 17 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 18 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 19 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 20 + + + + DispatchInterface IMsoContactCard + SupportByVersion Office, 14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861128.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865180.aspx + + + + + SupportByVersion Office 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864963.aspx + + + + + SupportByVersion Office 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860217.aspx + + + + + SupportByVersion Office 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860611.aspx + Unknown COM Proxy + + + + + DispatchInterface PickerProperty + SupportByVersion Office, 14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865563.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862114.aspx + + + + + SupportByVersion Office 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862124.aspx + + + + + SupportByVersion Office 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862824.aspx + + + + + DispatchInterface PickerField + SupportByVersion Office, 14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865318.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863098.aspx + + + + + SupportByVersion Office 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860586.aspx + + + + + SupportByVersion Office 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865223.aspx + + + + + DispatchInterface BulletFormat2 + SupportByVersion Office, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863746.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860556.aspx + + string FileName + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861186.aspx + Unknown COM Proxy + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860608.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860536.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864635.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863117.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860774.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860844.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863284.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864181.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861075.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861165.aspx + + + + + DispatchInterface IMsoLegend + SupportByVersion Office, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + + + optional object Index + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 14, 15 + Get + + + + + DispatchInterface IRibbonExtensibility SupportByVersionAttribute Office, 12,14,15 + + + + + DispatchInterface CustomXMLValidationError + SupportByVersion Office, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862792.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864852.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864106.aspx + Unknown COM Proxy + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862818.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864887.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861737.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863367.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860233.aspx + + + + + DispatchInterface CustomXMLPrefixMapping + SupportByVersion Office, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863518.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863484.aspx + Unknown COM Proxy + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861794.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865499.aspx + + + + + DispatchInterface DocumentLibraryVersions + SupportByVersion Office, 11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860259.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersionAttribute Office, 11,12,14,15 + + + + + SupportByVersionAttribute Office, 11,12,14,15 + + + + + SupportByVersion Office 11, 12, 14, 15 + Get + + Int32 lIndex + + + + SupportByVersion Office 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862237.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863759.aspx + Unknown COM Proxy + + + + + SupportByVersion Office 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863074.aspx + + + + + DispatchInterface Sync + SupportByVersion Office, 11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860602.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863651.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860754.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860783.aspx + + NetOffice.OfficeApi.Enums.MsoSyncVersionType SyncVersionType + + + + SupportByVersion Office 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864675.aspx + + NetOffice.OfficeApi.Enums.MsoSyncConflictResolutionType SyncConflictResolution + + + + SupportByVersion Office 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861422.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865564.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865364.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864917.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862150.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860559.aspx + Unknown COM Proxy + + + + + DispatchInterface SharedWorkspaceMember + SupportByVersion Office, 11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861534.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861496.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860920.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862242.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861148.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862448.aspx + Unknown COM Proxy + + + + + DispatchInterface IMsoDiagram + SupportByVersion Office, 10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + NetOffice.OfficeApi.Enums.MsoDiagramType Type + + + + SupportByVersion Office 11, 12, 14, 15 + + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get/Set + + + + + DispatchInterface Signature + SupportByVersion Office, 10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861800.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864585.aspx + + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861168.aspx + + optional object varSigImg + optional object varDelSuggSigner + optional object varDelSuggSignerLine2 + optional object varDelSuggSignerEmail + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861168.aspx + + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861168.aspx + + optional object varSigImg + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861168.aspx + + optional object varSigImg + optional object varDelSuggSigner + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861168.aspx + + optional object varSigImg + optional object varDelSuggSigner + optional object varDelSuggSignerLine2 + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860855.aspx + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860302.aspx + Unknown COM Proxy + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864952.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864576.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862368.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863325.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862851.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863032.aspx + Unknown COM Proxy + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863133.aspx + + + + + DispatchInterface COMAddIns + SupportByVersion Office, 9,10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865489.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861527.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + bool varfModal + + + + SupportByVersionAttribute Office, 9,10,11,12,14,15 + + + + + SupportByVersionAttribute Office, 9,10,11,12,14,15 + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861780.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860605.aspx + Unknown COM Proxy + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + object Index + + + + SupportByVersion Office 14, 15 + + + + + SupportByVersion Office 14, 15 + + 1 + + + + SupportByVersion Office 14, 15 + + 2 + + + + SupportByVersion Office 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863440.aspx + + + + SupportByVersion Office 12, 14, 15 + + 1 + + + + SupportByVersion Office 12, 14, 15 + + 2 + + + + SupportByVersion Office 12, 14, 15 + + 3 + + + + SupportByVersion Office 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860826.aspx + + + + SupportByVersion Office 12, 14, 15 + + -2 + + + + SupportByVersion Office 12, 14, 15 + + 1 + + + + SupportByVersion Office 12, 14, 15 + + 2 + + + + SupportByVersion Office 12, 14, 15 + + 3 + + + + SupportByVersion Office 12, 14, 15 + + 4 + + + + SupportByVersion Office 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864118.aspx + + + + SupportByVersion Office 12, 14, 15 + + 0 + + + + SupportByVersion Office 12, 14, 15 + + 1 + + + + SupportByVersion Office 12, 14, 15 + + 2 + + + + SupportByVersion Office 12, 14, 15 + + 100 + + + + SupportByVersion Office 12, 14, 15 + + 101 + + + + SupportByVersion Office 12, 14, 15 + + 102 + + + + SupportByVersion Office 12, 14, 15 + + 103 + + + + SupportByVersion Office 12, 14, 15 + + 104 + + + + SupportByVersion Office 12, 14, 15 + + 105 + + + + SupportByVersion Office 12, 14, 15 + + 106 + + + + SupportByVersion Office 12, 14, 15 + + 200 + + + + SupportByVersion Office 12, 14, 15 + + 201 + + + + SupportByVersion Office 12, 14, 15 + + 202 + + + + SupportByVersion Office 12, 14, 15 + + 203 + + + + SupportByVersion Office 12, 14, 15 + + 204 + + + + SupportByVersion Office 12, 14, 15 + + 205 + + + + SupportByVersion Office 12, 14, 15 + + 206 + + + + SupportByVersion Office 12, 14, 15 + + 207 + + + + SupportByVersion Office 12, 14, 15 + + 208 + + + + SupportByVersion Office 12, 14, 15 + + 209 + + + + SupportByVersion Office 12, 14, 15 + + 210 + + + + SupportByVersion Office 12, 14, 15 + + 300 + + + + SupportByVersion Office 12, 14, 15 + + 301 + + + + SupportByVersion Office 12, 14, 15 + + 302 + + + + SupportByVersion Office 12, 14, 15 + + 303 + + + + SupportByVersion Office 12, 14, 15 + + 304 + + + + SupportByVersion Office 12, 14, 15 + + 305 + + + + SupportByVersion Office 12, 14, 15 + + 306 + + + + SupportByVersion Office 12, 14, 15 + + 306 + + + + SupportByVersion Office 12, 14, 15 + + 308 + + + + SupportByVersion Office 12, 14, 15 + + 309 + + + + SupportByVersion Office 12, 14, 15 + + 310 + + + + SupportByVersion Office 12, 14, 15 + + 311 + + + + SupportByVersion Office 12, 14, 15 + + 312 + + + + SupportByVersion Office 12, 14, 15 + + 313 + + + + SupportByVersion Office 12, 14, 15 + + 314 + + + + SupportByVersion Office 12, 14, 15 + + 315 + + + + SupportByVersion Office 12, 14, 15 + + 316 + + + + SupportByVersion Office 12, 14, 15 + + 317 + + + + SupportByVersion Office 12, 14, 15 + + 318 + + + + SupportByVersion Office 12, 14, 15 + + 319 + + + + SupportByVersion Office 12, 14, 15 + + 320 + + + + SupportByVersion Office 12, 14, 15 + + 321 + + + + SupportByVersion Office 12, 14, 15 + + 322 + + + + SupportByVersion Office 12, 14, 15 + + 323 + + + + SupportByVersion Office 12, 14, 15 + + 324 + + + + SupportByVersion Office 12, 14, 15 + + 325 + + + + SupportByVersion Office 12, 14, 15 + + 326 + + + + SupportByVersion Office 12, 14, 15 + + 327 + + + + SupportByVersion Office 12, 14, 15 + + 328 + + + + SupportByVersion Office 12, 14, 15 + + 329 + + + + SupportByVersion Office 12, 14, 15 + + 330 + + + + SupportByVersion Office 12, 14, 15 + + 331 + + + + SupportByVersion Office 12, 14, 15 + + 332 + + + + SupportByVersion Office 12, 14, 15 + + 333 + + + + SupportByVersion Office 12, 14, 15 + + 334 + + + + SupportByVersion Office 12, 14, 15 + + 335 + + + + SupportByVersion Office 12, 14, 15 + + 336 + + + + SupportByVersion Office 12, 14, 15 + + 337 + + + + SupportByVersion Office 12, 14, 15 + + 338 + + + + SupportByVersion Office 12, 14, 15 + + 339 + + + + SupportByVersion Office 12, 14, 15 + + 340 + + + + SupportByVersion Office 12, 14, 15 + + 341 + + + + SupportByVersion Office 12, 14, 15 + + 342 + + + + SupportByVersion Office 12, 14, 15 + + 343 + + + + SupportByVersion Office 12, 14, 15 + + 344 + + + + SupportByVersion Office 12, 14, 15 + + 345 + + + + SupportByVersion Office 12, 14, 15 + + 346 + + + + SupportByVersion Office 12, 14, 15 + + 347 + + + + SupportByVersion Office 12, 14, 15 + + 348 + + + + SupportByVersion Office 12, 14, 15 + + 349 + + + + SupportByVersion Office 12, 14, 15 + + 350 + + + + SupportByVersion Office 12, 14, 15 + + 351 + + + + SupportByVersion Office 12, 14, 15 + + 352 + + + + SupportByVersion Office 12, 14, 15 + + 353 + + + + SupportByVersion Office 12, 14, 15 + + 354 + + + + SupportByVersion Office 12, 14, 15 + + 355 + + + + SupportByVersion Office 12, 14, 15 + + 356 + + + + SupportByVersion Office 12, 14, 15 + + 357 + + + + SupportByVersion Office 12, 14, 15 + + 358 + + + + SupportByVersion Office 12, 14, 15 + + 359 + + + + SupportByVersion Office 12, 14, 15 + + 360 + + + + SupportByVersion Office 12, 14, 15 + + 361 + + + + SupportByVersion Office 12, 14, 15 + + 362 + + + + SupportByVersion Office 12, 14, 15 + + 363 + + + + SupportByVersion Office 12, 14, 15 + + 364 + + + + SupportByVersion Office 12, 14, 15 + + 365 + + + + SupportByVersion Office 12, 14, 15 + + 366 + + + + SupportByVersion Office 12, 14, 15 + + 367 + + + + SupportByVersion Office 12, 14, 15 + + 368 + + + + SupportByVersion Office 12, 14, 15 + + 369 + + + + SupportByVersion Office 12, 14, 15 + + 370 + + + + SupportByVersion Office 12, 14, 15 + + 371 + + + + SupportByVersion Office 12, 14, 15 + + 372 + + + + SupportByVersion Office 12, 14, 15 + + 373 + + + + SupportByVersion Office 12, 14, 15 + + 374 + + + + SupportByVersion Office 12, 14, 15 + + 375 + + + + SupportByVersion Office 12, 14, 15 + + 376 + + + + SupportByVersion Office 12, 14, 15 + + 377 + + + + SupportByVersion Office 12, 14, 15 + + 378 + + + + SupportByVersion Office 12, 14, 15 + + 379 + + + + SupportByVersion Office 12, 14, 15 + + 500 + + + + SupportByVersion Office 12, 14, 15 + + 501 + + + + SupportByVersion Office 12, 14, 15 + + 502 + + + + SupportByVersion Office 12, 14, 15 + + 600 + + + + SupportByVersion Office 12, 14, 15 + + 601 + + + + SupportByVersion Office 12, 14, 15 + + 602 + + + + SupportByVersion Office 12, 14, 15 + + 603 + + + + SupportByVersion Office 12, 14, 15 + + 604 + + + + SupportByVersion Office 12, 14, 15 + + 700 + + + + SupportByVersion Office 12, 14, 15 + + 701 + + + + SupportByVersion Office 12, 14, 15 + + 702 + + + + SupportByVersion Office 12, 14, 15 + + 703 + + + + SupportByVersion Office 12, 14, 15 + + 800 + + + + SupportByVersion Office 12, 14, 15 + + 801 + + + + SupportByVersion Office 12, 14, 15 + + 802 + + + + SupportByVersion Office 12, 14, 15 + + 803 + + + + SupportByVersion Office 12, 14, 15 + + 804 + + + + SupportByVersion Office 12, 14, 15 + + 900 + + + + SupportByVersion Office 12, 14, 15 + + 901 + + + + SupportByVersion Office 12, 14, 15 + + 1000 + + + + SupportByVersion Office 12, 14, 15 + + 1001 + + + + SupportByVersion Office 12, 14, 15 + + 1100 + + + + SupportByVersion Office 12, 14, 15 + + 1101 + + + + SupportByVersion Office 12, 14, 15 + + 1200 + + + + SupportByVersion Office 12, 14, 15 + + 1201 + + + + SupportByVersion Office 15 + + 211 + + + + SupportByVersion Office 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864038.aspx + + + + SupportByVersion Office 12, 14, 15 + + 0 + + + + SupportByVersion Office 12, 14, 15 + + 1 + + + + SupportByVersion Office 12, 14, 15 + + 2 + + + + SupportByVersion Office 12, 14, 15 + + 3 + + + + SupportByVersion Office 12, 14, 15 + + 4 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862815.aspx + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860818.aspx + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864939.aspx + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 7 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 11 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 14 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 15 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860759.aspx + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + -2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 4 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 5 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 6 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 7 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 8 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 9 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 10 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 11 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 12 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 13 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 14 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 15 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 16 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 17 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 18 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 19 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 20 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 21 + + + + SupportByVersion Office 11, 12, 14, 15 + + 22 + + + + SupportByVersion Office 11, 12, 14, 15 + + 23 + + + + SupportByVersion Office 12, 14, 15 + + 24 + + + + SupportByVersion Office 14, 15 + + 25 + + + + SupportByVersion Office 15 + + 26 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865517.aspx + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + -2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862193.aspx + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + -2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 4 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 5 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 6 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 7 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 8 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 9 + + + + DispatchInterface Crop + SupportByVersion Office, 14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860761.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862450.aspx + + + + + SupportByVersion Office 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864637.aspx + + + + + SupportByVersion Office 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860544.aspx + + + + + SupportByVersion Office 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860512.aspx + + + + + SupportByVersion Office 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861232.aspx + + + + + SupportByVersion Office 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861517.aspx + + + + + SupportByVersion Office 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861716.aspx + + + + + SupportByVersion Office 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864643.aspx + + + + + DispatchInterface PictureEffects + SupportByVersion Office, 14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864059.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861830.aspx + + NetOffice.OfficeApi.Enums.MsoPictureEffectType EffectType + optional Int32 Position = -1 + + + + SupportByVersion Office 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861830.aspx + + NetOffice.OfficeApi.Enums.MsoPictureEffectType EffectType + + + + SupportByVersion Office 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862552.aspx + + optional Int32 Index = -1 + + + + SupportByVersion Office 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862552.aspx + + + + + SupportByVersionAttribute Office, 14,15 + + + + + SupportByVersionAttribute Office, 14,15 + + + + + SupportByVersion Office 14, 15 + Get + + Int32 Index + + + + SupportByVersion Office 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861170.aspx + + + + + DispatchInterface PickerResults + SupportByVersion Office, 14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864136.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864663.aspx + + string Id + string DisplayName + string Type + optional string SIPId = + optional object ItemData + optional object SubItems + + + + SupportByVersion Office 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864663.aspx + + string Id + string DisplayName + string Type + + + + SupportByVersion Office 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864663.aspx + + string Id + string DisplayName + string Type + optional string SIPId = + + + + SupportByVersion Office 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864663.aspx + + string Id + string DisplayName + string Type + optional string SIPId = + optional object ItemData + + + + SupportByVersionAttribute Office, 14,15 + + + + + SupportByVersionAttribute Office, 14,15 + + + + + SupportByVersion Office 14, 15 + Get + + Int32 Index + + + + SupportByVersion Office 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865190.aspx + + + + + DispatchInterface SmartArtLayout + SupportByVersion Office, 14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865506.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864911.aspx + Unknown COM Proxy + + + + + SupportByVersion Office 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864607.aspx + + + + + SupportByVersion Office 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862149.aspx + + + + + SupportByVersion Office 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860789.aspx + + + + + SupportByVersion Office 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860575.aspx + + + + + DispatchInterface IMsoDropLines + SupportByVersion Office, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 14, 15 + Get + + + + + DispatchInterface IMsoFloor + SupportByVersion Office, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 14, 15 + Get + + + + + DispatchInterface WorkflowTemplate + SupportByVersion Office, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863138.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863678.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861378.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861417.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863121.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861722.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860562.aspx + + + + + DispatchInterface DiagramNode + SupportByVersion Office, 10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + optional NetOffice.OfficeApi.Enums.MsoRelativeNodePosition Pos = 2 + optional NetOffice.OfficeApi.Enums.MsoDiagramNodeType NodeType = 1 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + optional NetOffice.OfficeApi.Enums.MsoRelativeNodePosition Pos = 2 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + NetOffice.OfficeApi.DiagramNode TargetNode + NetOffice.OfficeApi.Enums.MsoRelativeNodePosition Pos + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + NetOffice.OfficeApi.DiagramNode TargetNode + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + NetOffice.OfficeApi.DiagramNode TargetNode + optional bool SwapChildren = true + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + NetOffice.OfficeApi.DiagramNode TargetNode + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + bool CopyChildren + NetOffice.OfficeApi.DiagramNode TargetNode + optional NetOffice.OfficeApi.Enums.MsoRelativeNodePosition Pos = 2 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + bool CopyChildren + NetOffice.OfficeApi.DiagramNode TargetNode + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + NetOffice.OfficeApi.DiagramNode ReceivingNode + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + + + + + CommandBarPopup + + + + + DispatchInterface CommandBarControl + SupportByVersion Office, 9,10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863821.aspx + + + + + CommandBarControl + + + + + DispatchInterface _IMsoOleAccDispObj + SupportByVersion Office, 9,10,11,12,14,15 + + + + + DispatchInterface IAccessible + SupportByVersion Office, 9,10,11,12,14,15 + + + + + IAccessible + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + Hidden stub .ctor + + + + registered ProgID + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_accName + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_accValue + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_accDescription + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_accRole + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_accState + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_accHelp + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_accKeyboardShortcut + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_accDefaultAction + + optional object varChild + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_accChild + Unknown COM Proxy + + object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + string pszHelpFile + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_accHelpTopic + + string pszHelpFile + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + string pszHelpFile + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_accHelpTopic + + string pszHelpFile + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Int32 flagsSelect + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Int32 flagsSelect + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Int32 pxLeft + Int32 pyTop + Int32 pcxWidth + Int32 pcyHeight + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Int32 pxLeft + Int32 pyTop + Int32 pcxWidth + Int32 pcyHeight + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Int32 navDir + optional object varStart + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Int32 navDir + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Int32 xLeft + Int32 yTop + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + Hidden stub .ctor + + + + registered ProgID + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_accName + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_accValue + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_accDescription + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_accRole + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_accState + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_accHelp + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_accKeyboardShortcut + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_accDefaultAction + + optional object varChild + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_accChild + Unknown COM Proxy + + object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + string pszHelpFile + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_accHelpTopic + + string pszHelpFile + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + string pszHelpFile + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_accHelpTopic + + string pszHelpFile + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Int32 flagsSelect + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Int32 flagsSelect + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Int32 pxLeft + Int32 pyTop + Int32 pcxWidth + Int32 pcyHeight + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Int32 pxLeft + Int32 pyTop + Int32 pcxWidth + Int32 pcyHeight + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Int32 navDir + optional object varStart + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Int32 navDir + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Int32 xLeft + Int32 yTop + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861397.aspx + + optional object Bar + optional object Before + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861397.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861397.aspx + + optional object Bar + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865269.aspx + + optional object Temporary + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865269.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861885.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863114.aspx + + optional object Bar + optional object Before + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863114.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863114.aspx + + optional object Bar + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862736.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864985.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861759.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861515.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862411.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861718.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862488.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862462.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861795.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860796.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860277.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860502.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861878.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864177.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860249.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864892.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862239.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860592.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864872.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860239.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862470.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863407.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863300.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863521.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864638.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + Hidden stub .ctor + + + + registered ProgID + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_accName + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_accValue + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_accDescription + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_accRole + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_accState + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_accHelp + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_accKeyboardShortcut + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_accDefaultAction + + optional object varChild + + + + DispatchInterface CommandBarPopup + SupportByVersion Office, 9,10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863642.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_accChild + Unknown COM Proxy + + object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + string pszHelpFile + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_accHelpTopic + + string pszHelpFile + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + string pszHelpFile + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_accHelpTopic + + string pszHelpFile + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Int32 flagsSelect + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Int32 flagsSelect + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Int32 pxLeft + Int32 pyTop + Int32 pcxWidth + Int32 pcyHeight + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Int32 pxLeft + Int32 pyTop + Int32 pcxWidth + Int32 pcyHeight + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Int32 navDir + optional object varStart + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Int32 navDir + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Int32 xLeft + Int32 yTop + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860908.aspx + Unknown COM Proxy + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860547.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865229.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860298.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861122.aspx + + + + + SupportByVersion Office 14, 15 + Get + + + + + Interface Points + SupportByVersion Office, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersionAttribute Office, 12,14,15 + + + + + SupportByVersionAttribute Office, 12,14,15 + + + + + SupportByVersion Office 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 14, 15 + Get + + + + + SupportByVersion Office 14, 15 + Get + + Int32 Index + + + + SupportByVersion Office 15 + + + + + SupportByVersion Office 15 + + -3 + + + + SupportByVersion Office 15 + + -2 + + + + SupportByVersion Office 15 + + -1 + + + + SupportByVersion Office 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863769.aspx + + + + SupportByVersion Office 12, 14, 15 + + 2 + + + + SupportByVersion Office 12, 14, 15 + + 4 + + + + SupportByVersion Office 12, 14, 15 + + 0 + + + + SupportByVersion Office 12, 14, 15 + + 3 + + + + SupportByVersion Office 12, 14, 15 + + 1 + + + + SupportByVersion Office 12, 14, 15 + + + + + SupportByVersion Office 12, 14, 15 + + 2 + + + + SupportByVersion Office 12, 14, 15 + + 3 + + + + SupportByVersion Office 12, 14, 15 + + -4105 + + + + SupportByVersion Office 12, 14, 15 + + + + + SupportByVersion Office 12, 14, 15 + + -4105 + + + + SupportByVersion Office 12, 14, 15 + + -4142 + + + + SupportByVersion Office 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860782.aspx + + + + SupportByVersion Office 12, 14, 15 + + -2 + + + + SupportByVersion Office 12, 14, 15 + + 0 + + + + SupportByVersion Office 12, 14, 15 + + 1 + + + + SupportByVersion Office 12, 14, 15 + + 2 + + + + SupportByVersion Office 12, 14, 15 + + 3 + + + + SupportByVersion Office 12, 14, 15 + + 4 + + + + SupportByVersion Office 12, 14, 15 + + 5 + + + + SupportByVersion Office 12, 14, 15 + + 6 + + + + SupportByVersion Office 12, 14, 15 + + 7 + + + + SupportByVersion Office 12, 14, 15 + + 8 + + + + SupportByVersion Office 12, 14, 15 + + 9 + + + + SupportByVersion Office 12, 14, 15 + + 10 + + + + SupportByVersion Office 12, 14, 15 + + 11 + + + + SupportByVersion Office 12, 14, 15 + + 12 + + + + SupportByVersion Office 12, 14, 15 + + 13 + + + + SupportByVersion Office 12, 14, 15 + + 14 + + + + SupportByVersion Office 12, 14, 15 + + 15 + + + + SupportByVersion Office 12, 14, 15 + + 16 + + + + SupportByVersion Office 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862839.aspx + + + + SupportByVersion Office 12, 14, 15 + + -2 + + + + SupportByVersion Office 12, 14, 15 + + 1 + + + + SupportByVersion Office 12, 14, 15 + + 2 + + + + SupportByVersion Office 12, 14, 15 + + 3 + + + + SupportByVersion Office 12, 14, 15 + + 4 + + + + SupportByVersion Office 12, 14, 15 + + 5 + + + + SupportByVersion Office 12, 14, 15 + + 6 + + + + SupportByVersion Office 12, 14, 15 + + 7 + + + + SupportByVersion Office 12, 14, 15 + + 8 + + + + SupportByVersion Office 12, 14, 15 + + 9 + + + + SupportByVersion Office 12, 14, 15 + + 10 + + + + SupportByVersion Office 12, 14, 15 + + 11 + + + + SupportByVersion Office 12, 14, 15 + + 12 + + + + SupportByVersion Office 12, 14, 15 + + 13 + + + + SupportByVersion Office 12, 14, 15 + + 14 + + + + SupportByVersion Office 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862771.aspx + + + + SupportByVersion Office 12, 14, 15 + + -2 + + + + SupportByVersion Office 12, 14, 15 + + 1 + + + + SupportByVersion Office 12, 14, 15 + + 2 + + + + SupportByVersion Office 12, 14, 15 + + 3 + + + + SupportByVersion Office 12, 14, 15 + + 4 + + + + SupportByVersion Office 12, 14, 15 + + 5 + + + + SupportByVersion Office 12, 14, 15 + + 6 + + + + SupportByVersion Office 12, 14, 15 + + 7 + + + + SupportByVersion Office 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860799.aspx + + + + SupportByVersion Office 12, 14, 15 + + -2 + + + + SupportByVersion Office 12, 14, 15 + + 1 + + + + SupportByVersion Office 12, 14, 15 + + 2 + + + + SupportByVersion Office 12, 14, 15 + + 3 + + + + SupportByVersion Office 12, 14, 15 + + 4 + + + + SupportByVersion Office 12, 14, 15 + + 5 + + + + SupportByVersion Office 12, 14, 15 + + 6 + + + + SupportByVersion Office 12, 14, 15 + + 7 + + + + SupportByVersion Office 12, 14, 15 + + 8 + + + + SupportByVersion Office 12, 14, 15 + + 9 + + + + SupportByVersion Office 12, 14, 15 + + 10 + + + + SupportByVersion Office 12, 14, 15 + + 11 + + + + SupportByVersion Office 12, 14, 15 + + 12 + + + + SupportByVersion Office 12, 14, 15 + + 13 + + + + SupportByVersion Office 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864927.aspx + + + + SupportByVersion Office 11, 12, 14, 15 + + 0 + + + + SupportByVersion Office 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 11, 12, 14, 15 + + 3 + + + + SupportByVersion Office 11, 12, 14, 15 + + 4 + + + + SupportByVersion Office 11, 12, 14, 15 + + 5 + + + + SupportByVersion Office 11, 12, 14, 15 + + 6 + + + + SupportByVersion Office 11, 12, 14, 15 + + 7 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864043.aspx + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + -1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 4 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 5 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862538.aspx + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862857.aspx + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 4 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 5 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 6 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860737.aspx + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + -1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + -3 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + -2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860718.aspx + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + -2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 4 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 5 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 6 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 7 + + + + DispatchInterface _CustomTaskPane + SupportByVersion Office, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862399.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861137.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862545.aspx + Unknown COM Proxy + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862803.aspx + Unknown COM Proxy + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865256.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861783.aspx + Unknown COM Proxy + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860235.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865362.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861841.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861088.aspx + + + + + DispatchInterface ThemeColor + SupportByVersion Office, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861152.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863654.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860274.aspx + Unknown COM Proxy + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860576.aspx + + + + + DispatchInterface TextColumn2 + SupportByVersion Office, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862078.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860260.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863277.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864646.aspx + + + + + DispatchInterface ParagraphFormat2 + SupportByVersion Office, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860250.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862847.aspx + Unknown COM Proxy + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862834.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861479.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863871.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864592.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861781.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863364.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863818.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864662.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865358.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863089.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861150.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862758.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865306.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861066.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865291.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862162.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864981.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862056.aspx + + + + + DispatchInterface IMsoEServicesDialog + SupportByVersion Office, 10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + optional bool ApplyWebComponentChanges = false + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + string Domain + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + DispatchInterface ODSOFilter + SupportByVersion Office, 10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863317.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862722.aspx + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865492.aspx + Unknown COM Proxy + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861769.aspx + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863279.aspx + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864944.aspx + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860785.aspx + + + + + DispatchInterface CanvasShapes + SupportByVersion Office, 10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + NetOffice.OfficeApi.Enums.MsoCalloutType Type + Single Left + Single Top + Single Width + Single Height + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + NetOffice.OfficeApi.Enums.MsoConnectorType Type + Single BeginX + Single BeginY + Single EndX + Single EndY + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + object SafeArrayOfPoints + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + NetOffice.OfficeApi.Enums.MsoTextOrientation Orientation + Single Left + Single Top + Single Width + Single Height + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + Single BeginX + Single BeginY + Single EndX + Single EndY + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + string FileName + NetOffice.OfficeApi.Enums.MsoTriState LinkToFile + NetOffice.OfficeApi.Enums.MsoTriState SaveWithDocument + Single Left + Single Top + optional Single Width = -1 + optional Single Height = -1 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + string FileName + NetOffice.OfficeApi.Enums.MsoTriState LinkToFile + NetOffice.OfficeApi.Enums.MsoTriState SaveWithDocument + Single Left + Single Top + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + string FileName + NetOffice.OfficeApi.Enums.MsoTriState LinkToFile + NetOffice.OfficeApi.Enums.MsoTriState SaveWithDocument + Single Left + Single Top + optional Single Width = -1 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + object SafeArrayOfPoints + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + NetOffice.OfficeApi.Enums.MsoAutoShapeType Type + Single Left + Single Top + Single Width + Single Height + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + NetOffice.OfficeApi.Enums.MsoPresetTextEffect PresetTextEffect + string Text + string FontName + Single FontSize + NetOffice.OfficeApi.Enums.MsoTriState FontBold + NetOffice.OfficeApi.Enums.MsoTriState FontItalic + Single Left + Single Top + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + NetOffice.OfficeApi.Enums.MsoTextOrientation Orientation + Single Left + Single Top + Single Width + Single Height + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + NetOffice.OfficeApi.Enums.MsoEditingType EditingType + Single X1 + Single Y1 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + object Index + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + + + + SupportByVersionAttribute Office, 10,11,12,14,15 + + + + + SupportByVersionAttribute Office, 10,11,12,14,15 + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + object Index + + + + DispatchInterface MsoDebugOptions + SupportByVersion Office, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 15 + + + string bstrTagToIgnore + + + + SupportByVersion Office 15 + + + string bstrTagToIgnore + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get + Unknown COM Proxy + + + + + DispatchInterface BalloonLabel + SupportByVersion Office, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + DispatchInterface BalloonCheckbox + SupportByVersion Office, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + DispatchInterface TextEffectFormat + SupportByVersion Office, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + DispatchInterface Script + SupportByVersion Office, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + IMsoDataLabels + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + Hidden stub .ctor + + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + Get + + optional object Start + optional object Length + + + + SupportByVersion Office 12, 14, 15 + Alias for get_Characters + + optional object Start + optional object Length + + + + SupportByVersion Office 12, 14, 15 + Get + + optional object Start + + + + SupportByVersion Office 12, 14, 15 + Alias for get_Characters + + optional object Start + + + + Interface IMsoDataLabels + SupportByVersion Office, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 15 + + + object Index + + + + SupportByVersionAttribute Office, 12,14,15 + + + + + SupportByVersionAttribute Office, 12,14,15 + + + + + SupportByVersion Office 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 14, 15 + Get + + + + + SupportByVersion Office 14, 15 + Get + + object Index + + + + SupportByVersion Office 15 + Get/Set + + + + + Interface IDocumentInspector + SupportByVersion Office, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861808.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862465.aspx + + string Name + string Desc + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861133.aspx + + object Doc + NetOffice.OfficeApi.Enums.MsoDocInspectorStatus Status + string Result + string Action + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864114.aspx + + object Doc + Int32 Hwnd + NetOffice.OfficeApi.Enums.MsoDocInspectorStatus Status + string Result + + + + SupportByVersion Office 12, 14, 15 + + + + + SupportByVersion Office 12, 14, 15 + + -4108 + + + + SupportByVersion Office 12, 14, 15 + + 7 + + + + SupportByVersion Office 12, 14, 15 + + -4117 + + + + SupportByVersion Office 12, 14, 15 + + 5 + + + + SupportByVersion Office 12, 14, 15 + + 1 + + + + SupportByVersion Office 12, 14, 15 + + -4130 + + + + SupportByVersion Office 12, 14, 15 + + -4131 + + + + SupportByVersion Office 12, 14, 15 + + -4152 + + + + SupportByVersion Office 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863048.aspx + + + + SupportByVersion Office 12, 14, 15 + + 0 + + + + SupportByVersion Office 12, 14, 15 + + 1 + + + + SupportByVersion Office 12, 14, 15 + + 2 + + + + SupportByVersion Office 12, 14, 15 + + + + + SupportByVersion Office 12, 14, 15 + + 1 + + + + SupportByVersion Office 12, 14, 15 + + 3 + + + + SupportByVersion Office 12, 14, 15 + + 2 + + + + SupportByVersion Office 12, 14, 15 + + + + + SupportByVersion Office 12, 14, 15 + + -4142 + + + + SupportByVersion Office 12, 14, 15 + + 2 + + + + SupportByVersion Office 12, 14, 15 + + 3 + + + + SupportByVersion Office 12, 14, 15 + + 4 + + + + SupportByVersion Office 12, 14, 15 + + 5 + + + + SupportByVersion Office 12, 14, 15 + + 6 + + + + SupportByVersion Office 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864925.aspx + + + + SupportByVersion Office 12, 14, 15 + + 0 + + + + SupportByVersion Office 12, 14, 15 + + 1 + + + + SupportByVersion Office 12, 14, 15 + + 2 + + + + SupportByVersion Office 12, 14, 15 + + 3 + + + + SupportByVersion Office 12, 14, 15 + + 4 + + + + SupportByVersion Office 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863504.aspx + + + + SupportByVersion Office 12, 14, 15 + + 1 + + + + SupportByVersion Office 12, 14, 15 + + 2 + + + + SupportByVersion Office 12, 14, 15 + + 3 + + + + SupportByVersion Office 12, 14, 15 + + 4 + + + + SupportByVersion Office 12, 14, 15 + + 5 + + + + SupportByVersion Office 12, 14, 15 + + 6 + + + + SupportByVersion Office 12, 14, 15 + + 7 + + + + SupportByVersion Office 12, 14, 15 + + 8 + + + + SupportByVersion Office 12, 14, 15 + + 9 + + + + SupportByVersion Office 12, 14, 15 + + 10 + + + + SupportByVersion Office 12, 14, 15 + + 11 + + + + SupportByVersion Office 12, 14, 15 + + 12 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862812.aspx + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + -2 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862134.aspx + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + -2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1024 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1078 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1052 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 5121 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 15361 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 3073 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2049 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 11265 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 13313 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 12289 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 4097 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 6145 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 8193 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 16385 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1025 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 10241 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 7169 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 14337 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 9217 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1067 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1101 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2092 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1068 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1069 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1059 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1093 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1026 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1109 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1027 + + + + SupportByVersion Office 9 + + 3076 + + + + SupportByVersion Office 9 + + 5124 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2052 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 4100 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1028 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1050 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1029 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1030 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2067 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1043 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 3081 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 10249 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 4105 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 9225 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 6153 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 8201 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 5129 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 13321 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 7177 + + + + SupportByVersion Office 9 + + 11273 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2057 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1033 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 12297 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1061 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1080 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1065 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1035 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2060 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 11276 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 3084 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 12300 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1036 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 5132 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 13324 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 6156 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 8204 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 10252 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 4108 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 7180 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 9228 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1122 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2108 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1084 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1110 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1079 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 3079 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1031 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 5127 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 4103 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2055 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1032 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1095 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1037 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1081 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1038 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1039 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1057 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1040 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2064 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1041 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1099 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1120 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1087 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1107 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1088 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1111 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1042 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1108 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1062 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1063 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1071 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1086 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2110 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1100 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1082 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1112 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1102 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1104 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1121 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1044 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2068 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1096 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1045 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1046 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2070 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1094 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1047 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2072 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1048 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2073 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1049 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1083 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1103 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 3098 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2074 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1072 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1113 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1051 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1060 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1070 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 11274 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 16394 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 13322 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 9226 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 5130 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 7178 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 12298 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 17418 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 4106 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 18442 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2058 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 19466 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 6154 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 15370 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 10250 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 20490 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 3082 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1034 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 14346 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 8202 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1072 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1089 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2077 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1053 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1064 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1097 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1092 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1098 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1054 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1105 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1073 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1074 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1055 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1090 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1058 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1056 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2115 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1091 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1075 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1066 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1106 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1076 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1077 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 1118 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 3076 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 5124 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 1116 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 1125 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 2129 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 1126 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 14345 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 11273 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 1124 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 15372 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 14348 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 1127 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 1140 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 1128 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 1141 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 1129 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 1136 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 1117 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 1137 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 2144 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 1088 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 1142 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 1138 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 1123 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 2137 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 1115 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 1143 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 1114 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 1119 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 2143 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 1139 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 2163 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 1144 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 1085 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 1130 + + + + SupportByVersion Office 11, 12, 14, 15 + + 4122 + + + + SupportByVersion Office 11, 12, 14, 15 + + 1153 + + + + SupportByVersion Office 11, 12, 14, 15 + + 1131 + + + + SupportByVersion Office 11, 12, 14, 15 + + 2155 + + + + SupportByVersion Office 11, 12, 14, 15 + + 3179 + + + + SupportByVersion Office 11, 12, 14, 15 + + 1132 + + + + SupportByVersion Office 12, 14, 15 + + 8218 + + + + SupportByVersion Office 12, 14, 15 + + 5146 + + + + SupportByVersion Office 12, 14, 15 + + 9228 + + + + SupportByVersion Office 12, 14, 15 + + 1071 + + + + SupportByVersion Office 12, 14, 15 + + 7194 + + + + SupportByVersion Office 12, 14, 15 + + 6170 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 4 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 5 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861472.aspx + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864674.aspx + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + -2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 4 + + + + CoClass CommandBarButton + SupportByVersion Office, 9,10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865221.aspx + + + + + DispatchInterface _CommandBarButton + SupportByVersion Office, 9,10,11,12,14,15 + + + + + _CommandBarButton + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + Hidden stub .ctor + + + + registered ProgID + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_accName + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_accValue + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_accDescription + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_accRole + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_accState + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_accHelp + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_accKeyboardShortcut + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_accDefaultAction + + optional object varChild + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_accChild + Unknown COM Proxy + + object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + string pszHelpFile + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_accHelpTopic + + string pszHelpFile + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + string pszHelpFile + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_accHelpTopic + + string pszHelpFile + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Int32 flagsSelect + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Int32 flagsSelect + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Int32 pxLeft + Int32 pyTop + Int32 pcxWidth + Int32 pcyHeight + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Int32 pxLeft + Int32 pyTop + Int32 pcxWidth + Int32 pcyHeight + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Int32 navDir + optional object varStart + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Int32 navDir + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Int32 xLeft + Int32 yTop + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860283.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860599.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864144.aspx + Unknown COM Proxy + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863319.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861450.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864154.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864972.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863115.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861864.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861807.aspx + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864041.aspx + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864960.aspx + + + + + SupportByVersion Office 14, 15 + Get + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of CommandBarButton + + + + + creates a new instance of CommandBarButton + + registered ProgID + + + + returns all running Office.CommandBarButton objects from the running object table(ROT) + + an Office.CommandBarButton array + + + + returns a running Office.CommandBarButton object from the running object table(ROT). the method takes the first element from the table + + an Office.CommandBarButton object or null + + + + returns a running Office.CommandBarButton object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Office.CommandBarButton object or null + + + + creates active sink helper + + + + + SupportByVersion Office, 9,10,11,12,14,15 + + + + + SupportByVersion Office 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864867.aspx + + + + DispatchInterface ICustomTaskPaneConsumer SupportByVersionAttribute Office, 12,14,15 + + + + + DispatchInterface CustomXMLNode + SupportByVersion Office, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865242.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861364.aspx + + optional string Name = + optional string NamespaceURI = + optional NetOffice.OfficeApi.Enums.MsoCustomXMLNodeType NodeType = 1 + optional string NodeValue = + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861364.aspx + + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861364.aspx + + optional string Name = + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861364.aspx + + optional string Name = + optional string NamespaceURI = + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861364.aspx + + optional string Name = + optional string NamespaceURI = + optional NetOffice.OfficeApi.Enums.MsoCustomXMLNodeType NodeType = 1 + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862169.aspx + + string XML + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864986.aspx + + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863303.aspx + + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863860.aspx + + optional string Name = + optional string NamespaceURI = + optional NetOffice.OfficeApi.Enums.MsoCustomXMLNodeType NodeType = 1 + optional string NodeValue = + optional NetOffice.OfficeApi.CustomXMLNode NextSibling = 0 + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863860.aspx + + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863860.aspx + + optional string Name = + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863860.aspx + + optional string Name = + optional string NamespaceURI = + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863860.aspx + + optional string Name = + optional string NamespaceURI = + optional NetOffice.OfficeApi.Enums.MsoCustomXMLNodeType NodeType = 1 + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863860.aspx + + optional string Name = + optional string NamespaceURI = + optional NetOffice.OfficeApi.Enums.MsoCustomXMLNodeType NodeType = 1 + optional string NodeValue = + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861904.aspx + + string XML + optional NetOffice.OfficeApi.CustomXMLNode NextSibling = 0 + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861904.aspx + + string XML + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864947.aspx + + NetOffice.OfficeApi.CustomXMLNode Child + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862478.aspx + + NetOffice.OfficeApi.CustomXMLNode OldNode + optional string Name = + optional string NamespaceURI = + optional NetOffice.OfficeApi.Enums.MsoCustomXMLNodeType NodeType = 1 + optional string NodeValue = + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862478.aspx + + NetOffice.OfficeApi.CustomXMLNode OldNode + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862478.aspx + + NetOffice.OfficeApi.CustomXMLNode OldNode + optional string Name = + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862478.aspx + + NetOffice.OfficeApi.CustomXMLNode OldNode + optional string Name = + optional string NamespaceURI = + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862478.aspx + + NetOffice.OfficeApi.CustomXMLNode OldNode + optional string Name = + optional string NamespaceURI = + optional NetOffice.OfficeApi.Enums.MsoCustomXMLNodeType NodeType = 1 + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863134.aspx + + string XML + NetOffice.OfficeApi.CustomXMLNode OldNode + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861411.aspx + + string XPath + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862077.aspx + + string XPath + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864640.aspx + Unknown COM Proxy + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861370.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862737.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862357.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863022.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864028.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861516.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862522.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865216.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862159.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862788.aspx + Unknown COM Proxy + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864973.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861743.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865519.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863358.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860871.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860882.aspx + + + + + DispatchInterface SignatureInfo + SupportByVersion Office, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865566.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862539.aspx + + NetOffice.OfficeApi.Enums.SignatureDetail sigdet + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865451.aspx + + NetOffice.OfficeApi.Enums.CertificateDetail certdet + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863087.aspx + + object ParentWindow + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863741.aspx + + object ParentWindow + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863290.aspx + + string bstrThumbprint + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860243.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865010.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860281.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861498.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860921.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860572.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864945.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862453.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860786.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865218.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864566.aspx + + + + + DispatchInterface WorkflowTemplates + SupportByVersion Office, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860226.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersionAttribute Office, 12,14,15 + + + + + SupportByVersionAttribute Office, 12,14,15 + + + + + SupportByVersion Office 12, 14, 15 + Get + + Int32 Index + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861838.aspx + + + + + DispatchInterface Permission + SupportByVersion Office, 11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861518.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863139.aspx + + string UserId + optional object Permission + optional object ExpirationDate + + + + SupportByVersion Office 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863139.aspx + + string UserId + + + + SupportByVersion Office 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863139.aspx + + string UserId + optional object Permission + + + + SupportByVersion Office 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864678.aspx + + string FileName + + + + SupportByVersion Office 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861135.aspx + + + + + SupportByVersionAttribute Office, 11,12,14,15 + + + + + SupportByVersionAttribute Office, 11,12,14,15 + + + + + SupportByVersion Office 11, 12, 14, 15 + Get + + object Index + + + + SupportByVersion Office 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865565.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862116.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861383.aspx + Unknown COM Proxy + + + + + SupportByVersion Office 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865228.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862755.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860910.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860601.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864131.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864905.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863690.aspx + + + + + DispatchInterface SharedWorkspaceFolders + SupportByVersion Office, 11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863650.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861883.aspx + + string FolderName + optional object ParentFolder + + + + SupportByVersion Office 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861883.aspx + + string FolderName + + + + SupportByVersionAttribute Office, 11,12,14,15 + + + + + SupportByVersionAttribute Office, 11,12,14,15 + + + + + SupportByVersion Office 11, 12, 14, 15 + Get + + Int32 Index + + + + SupportByVersion Office 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865340.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860587.aspx + Unknown COM Proxy + + + + + SupportByVersion Office 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864641.aspx + + + + + DispatchInterface WebComponentWindowExternal + SupportByVersion Office, 10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + + + + + DispatchInterface SignatureSet + SupportByVersion Office, 10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861798.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865505.aspx + + optional object varSigProv + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865505.aspx + + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865238.aspx + + optional object varSigProv + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865238.aspx + + + + + SupportByVersionAttribute Office, 10,11,12,14,15 + + + + + SupportByVersionAttribute Office, 10,11,12,14,15 + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862205.aspx + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + + Int32 iSig + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862853.aspx + Unknown COM Proxy + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865204.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860322.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860584.aspx + + + + + DispatchInterface HTMLProjectItems + SupportByVersion Office, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersionAttribute Office, 9,10,11,12,14,15 + + + + + SupportByVersionAttribute Office, 9,10,11,12,14,15 + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + object Index + + + + DispatchInterface Shapes + SupportByVersion Office, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + NetOffice.OfficeApi.Enums.MsoCalloutType Type + Single Left + Single Top + Single Width + Single Height + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + NetOffice.OfficeApi.Enums.MsoConnectorType Type + Single BeginX + Single BeginY + Single EndX + Single EndY + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + object SafeArrayOfPoints + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + NetOffice.OfficeApi.Enums.MsoTextOrientation Orientation + Single Left + Single Top + Single Width + Single Height + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Single BeginX + Single BeginY + Single EndX + Single EndY + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + string FileName + NetOffice.OfficeApi.Enums.MsoTriState LinkToFile + NetOffice.OfficeApi.Enums.MsoTriState SaveWithDocument + Single Left + Single Top + optional Single Width = -1 + optional Single Height = -1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + string FileName + NetOffice.OfficeApi.Enums.MsoTriState LinkToFile + NetOffice.OfficeApi.Enums.MsoTriState SaveWithDocument + Single Left + Single Top + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + string FileName + NetOffice.OfficeApi.Enums.MsoTriState LinkToFile + NetOffice.OfficeApi.Enums.MsoTriState SaveWithDocument + Single Left + Single Top + optional Single Width = -1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + object SafeArrayOfPoints + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + NetOffice.OfficeApi.Enums.MsoAutoShapeType Type + Single Left + Single Top + Single Width + Single Height + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + NetOffice.OfficeApi.Enums.MsoPresetTextEffect PresetTextEffect + string Text + string FontName + Single FontSize + NetOffice.OfficeApi.Enums.MsoTriState FontBold + NetOffice.OfficeApi.Enums.MsoTriState FontItalic + Single Left + Single Top + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + NetOffice.OfficeApi.Enums.MsoTextOrientation Orientation + Single Left + Single Top + Single Width + Single Height + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + NetOffice.OfficeApi.Enums.MsoEditingType EditingType + Single X1 + Single Y1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + object Index + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + NetOffice.OfficeApi.Enums.MsoDiagramType Type + Single Left + Single Top + Single Width + Single Height + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + Single Left + Single Top + Single Width + Single Height + + + + SupportByVersion Office 12, 14, 15 + + + optional NetOffice.OfficeApi.Enums.XlChartType Type = -1 + optional Single Left = -1 + optional Single Top = -1 + optional Single Width = -1 + optional Single Height = -1 + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + + + optional NetOffice.OfficeApi.Enums.XlChartType Type = -1 + + + + SupportByVersion Office 12, 14, 15 + + + optional NetOffice.OfficeApi.Enums.XlChartType Type = -1 + optional Single Left = -1 + + + + SupportByVersion Office 12, 14, 15 + + + optional NetOffice.OfficeApi.Enums.XlChartType Type = -1 + optional Single Left = -1 + optional Single Top = -1 + + + + SupportByVersion Office 12, 14, 15 + + + optional NetOffice.OfficeApi.Enums.XlChartType Type = -1 + optional Single Left = -1 + optional Single Top = -1 + optional Single Width = -1 + + + + SupportByVersion Office 12, 14, 15 + + + Int32 NumRows + Int32 NumColumns + Single Left + Single Top + Single Width + Single Height + + + + SupportByVersion Office 14, 15 + + + NetOffice.OfficeApi.SmartArtLayout Layout + optional Single Left = -1 + optional Single Top = -1 + optional Single Width = -1 + optional Single Height = -1 + + + + SupportByVersion Office 14, 15 + + + NetOffice.OfficeApi.SmartArtLayout Layout + + + + SupportByVersion Office 14, 15 + + + NetOffice.OfficeApi.SmartArtLayout Layout + optional Single Left = -1 + + + + SupportByVersion Office 14, 15 + + + NetOffice.OfficeApi.SmartArtLayout Layout + optional Single Left = -1 + optional Single Top = -1 + + + + SupportByVersion Office 14, 15 + + + NetOffice.OfficeApi.SmartArtLayout Layout + optional Single Left = -1 + optional Single Top = -1 + optional Single Width = -1 + + + + SupportByVersion Office 15 + + + optional Int32 Style = -1 + optional NetOffice.OfficeApi.Enums.XlChartType Type = -1 + optional Single Left = -1 + optional Single Top = -1 + optional Single Width = -1 + optional Single Height = -1 + optional bool NewLayout = true + + + + SupportByVersion Office 15 + + + + + + SupportByVersion Office 15 + + + optional Int32 Style = -1 + + + + SupportByVersion Office 15 + + + optional Int32 Style = -1 + optional NetOffice.OfficeApi.Enums.XlChartType Type = -1 + + + + SupportByVersion Office 15 + + + optional Int32 Style = -1 + optional NetOffice.OfficeApi.Enums.XlChartType Type = -1 + optional Single Left = -1 + + + + SupportByVersion Office 15 + + + optional Int32 Style = -1 + optional NetOffice.OfficeApi.Enums.XlChartType Type = -1 + optional Single Left = -1 + optional Single Top = -1 + + + + SupportByVersion Office 15 + + + optional Int32 Style = -1 + optional NetOffice.OfficeApi.Enums.XlChartType Type = -1 + optional Single Left = -1 + optional Single Top = -1 + optional Single Width = -1 + + + + SupportByVersion Office 15 + + + optional Int32 Style = -1 + optional NetOffice.OfficeApi.Enums.XlChartType Type = -1 + optional Single Left = -1 + optional Single Top = -1 + optional Single Width = -1 + optional Single Height = -1 + + + + SupportByVersionAttribute Office, 9,10,11,12,14,15 + + + + + SupportByVersionAttribute Office, 9,10,11,12,14,15 + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + object Index + + + + _CommandBarActiveX + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + Hidden stub .ctor + + + + registered ProgID + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_accName + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_accValue + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_accDescription + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_accRole + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_accState + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_accHelp + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_accKeyboardShortcut + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_accDefaultAction + + optional object varChild + + + + DispatchInterface _CommandBarActiveX + SupportByVersion Office, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_accChild + Unknown COM Proxy + + object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + string pszHelpFile + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_accHelpTopic + + string pszHelpFile + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + string pszHelpFile + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_accHelpTopic + + string pszHelpFile + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + string bstrIid + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_QueryControlInterface + Unknown COM Proxy + + string bstrIid + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Int32 flagsSelect + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Int32 flagsSelect + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Int32 pxLeft + Int32 pyTop + Int32 pcxWidth + Int32 pcyHeight + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Int32 pxLeft + Int32 pyTop + Int32 pcxWidth + Int32 pcyHeight + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Int32 navDir + optional object varStart + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Int32 navDir + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Int32 xLeft + Int32 yTop + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + object pUnk + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + Unknown COM Proxy + + + + + SupportByVersion Office 14, 15 + Get + + + + + DispatchInterface _CommandBars + SupportByVersion Office, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + Int32 ids + string pbstrName + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_IdsString + + Int32 ids + string pbstrName + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + Int32 tmc + string pbstrName + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_TmcGetName + + Int32 tmc + string pbstrName + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861773.aspx + + optional object Name + optional object Position + optional object MenuBar + optional object Temporary + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861773.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861773.aspx + + optional object Name + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861773.aspx + + optional object Name + optional object Position + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861773.aspx + + optional object Name + optional object Position + optional object MenuBar + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860267.aspx + + optional object Type + optional object Id + optional object Tag + optional object Visible + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860267.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860267.aspx + + optional object Type + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860267.aspx + + optional object Type + optional object Id + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860267.aspx + + optional object Type + optional object Id + optional object Tag + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861062.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862556.aspx + + optional object Type + optional object Id + optional object Tag + optional object Visible + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862556.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862556.aspx + + optional object Type + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862556.aspx + + optional object Type + optional object Id + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862556.aspx + + optional object Type + optional object Id + optional object Tag + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + optional object TbidOrName + optional object Position + optional object MenuBar + optional object Temporary + optional object TbtrProtection + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + optional object TbidOrName + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + optional object TbidOrName + optional object Position + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + optional object TbidOrName + optional object Position + optional object MenuBar + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + optional object TbidOrName + optional object Position + optional object MenuBar + optional object Temporary + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862419.aspx + + string idMso + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862202.aspx + + string idMso + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863712.aspx + + string idMso + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863149.aspx + + string idMso + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860585.aspx + + string idMso + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860790.aspx + + string idMso + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864975.aspx + + string idMso + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861156.aspx + + string idMso + Int32 Width + Int32 Height + + + + SupportByVersion Office 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863478.aspx + + Int32 hwnd + + + + SupportByVersionAttribute Office, 9,10,11,12,14,15 + + + + + SupportByVersionAttribute Office, 9,10,11,12,14,15 + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862425.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863075.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860520.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863160.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864956.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + object Index + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864068.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864076.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862543.aspx + Unknown COM Proxy + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860590.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860823.aspx + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864631.aspx + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863405.aspx + + + + + Interface IConverter + SupportByVersion Office, 14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861235.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864088.aspx + + NetOffice.OfficeApi.IConverterApplicationPreferences pcap + NetOffice.OfficeApi.IConverterPreferences ppcp + NetOffice.OfficeApi.IConverterUICallback pcuic + + + + SupportByVersion Office 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862058.aspx + + NetOffice.OfficeApi.IConverterUICallback pcuic + + + + SupportByVersion Office 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864636.aspx + + string bstrSourcePath + string bstrDestPath + NetOffice.OfficeApi.IConverterApplicationPreferences pcap + NetOffice.OfficeApi.IConverterPreferences ppcp + NetOffice.OfficeApi.IConverterUICallback pcuic + + + + SupportByVersion Office 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863696.aspx + + string bstrSourcePath + string bstrDestPath + string bstrClass + NetOffice.OfficeApi.IConverterApplicationPreferences pcap + NetOffice.OfficeApi.IConverterPreferences ppcp + NetOffice.OfficeApi.IConverterUICallback pcuic + + + + SupportByVersion Office 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864094.aspx + + string bstrPath + string pbstrClass + NetOffice.OfficeApi.IConverterApplicationPreferences pcap + NetOffice.OfficeApi.IConverterPreferences ppcp + NetOffice.OfficeApi.IConverterUICallback pcuic + + + + SupportByVersion Office 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861511.aspx + + Int32 hrErr + string pbstrErrorMsg + NetOffice.OfficeApi.IConverterApplicationPreferences pcap + + + + Interface IMsoLegendKey + SupportByVersion Office, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 14, 15 + Get + + + + + SupportByVersion Office 14, 15 + Get/Set + + + + + SupportByVersion Office 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860813.aspx + + + + SupportByVersion Office 14, 15 + + 0 + + + + SupportByVersion Office 14, 15 + + 1 + + + + SupportByVersion Office 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863388.aspx + + + + SupportByVersion Office 14, 15 + + 0 + + + + SupportByVersion Office 14, 15 + + 1 + + + + SupportByVersion Office 14, 15 + + 2 + + + + SupportByVersion Office 14, 15 + + 3 + + + + SupportByVersion Office 14, 15 + + 4 + + + + SupportByVersion Office 14, 15 + + 5 + + + + SupportByVersion Office 12, 14, 15 + + + + + SupportByVersion Office 12, 14, 15 + + 0 + + + + SupportByVersion Office 12, 14, 15 + + 1 + + + + SupportByVersion Office 12, 14, 15 + + 2 + + + + SupportByVersion Office 12, 14, 15 + + 3 + + + + SupportByVersion Office 12, 14, 15 + + 4 + + + + SupportByVersion Office 12, 14, 15 + + 5 + + + + SupportByVersion Office 12, 14, 15 + + + + + SupportByVersion Office 12, 14, 15 + + -4105 + + + + SupportByVersion Office 12, 14, 15 + + 8 + + + + SupportByVersion Office 12, 14, 15 + + -4115 + + + + SupportByVersion Office 12, 14, 15 + + 2 + + + + SupportByVersion Office 12, 14, 15 + + -4118 + + + + SupportByVersion Office 12, 14, 15 + + -4142 + + + + SupportByVersion Office 12, 14, 15 + + -4147 + + + + SupportByVersion Office 12, 14, 15 + + 9 + + + + SupportByVersion Office 12, 14, 15 + + 1 + + + + SupportByVersion Office 12, 14, 15 + + 5 + + + + SupportByVersion Office 12, 14, 15 + + 3 + + + + SupportByVersion Office 12, 14, 15 + + -4168 + + + + SupportByVersion Office 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865194.aspx + + + + SupportByVersion Office 12, 14, 15 + + 1 + + + + SupportByVersion Office 12, 14, 15 + + 2 + + + + SupportByVersion Office 12, 14, 15 + + 3 + + + + SupportByVersion Office 12, 14, 15 + + 4 + + + + SupportByVersion Office 12, 14, 15 + + 5 + + + + SupportByVersion Office 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864942.aspx + + + + SupportByVersion Office 12, 14, 15 + + 0 + + + + SupportByVersion Office 12, 14, 15 + + 1 + + + + SupportByVersion Office 12, 14, 15 + + 2 + + + + SupportByVersion Office 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861893.aspx + + + + SupportByVersion Office 12, 14, 15 + + 1 + + + + SupportByVersion Office 12, 14, 15 + + 2 + + + + SupportByVersion Office 12, 14, 15 + + 3 + + + + SupportByVersion Office 12, 14, 15 + + 4 + + + + SupportByVersion Office 12, 14, 15 + + 7 + + + + SupportByVersion Office 12, 14, 15 + + 8 + + + + SupportByVersion Office 12, 14, 15 + + 9 + + + + SupportByVersion Office 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863118.aspx + + + + SupportByVersion Office 12, 14, 15 + + 0 + + + + SupportByVersion Office 12, 14, 15 + + 1 + + + + SupportByVersion Office 12, 14, 15 + + 2 + + + + SupportByVersion Office 12, 14, 15 + + 3 + + + + SupportByVersion Office 12, 14, 15 + + 4 + + + + SupportByVersion Office 12, 14, 15 + + 5 + + + + SupportByVersion Office 12, 14, 15 + + 6 + + + + SupportByVersion Office 12, 14, 15 + + 7 + + + + SupportByVersion Office 12, 14, 15 + + 8 + + + + SupportByVersion Office 12, 14, 15 + + 9 + + + + SupportByVersion Office 12, 14, 15 + + 10 + + + + SupportByVersion Office 12, 14, 15 + + 11 + + + + SupportByVersion Office 12, 14, 15 + + 12 + + + + SupportByVersion Office 12, 14, 15 + + 13 + + + + SupportByVersion Office 12, 14, 15 + + 14 + + + + SupportByVersion Office 12, 14, 15 + + 15 + + + + SupportByVersion Office 12, 14, 15 + + 16 + + + + SupportByVersion Office 12, 14, 15 + + 17 + + + + SupportByVersion Office 12, 14, 15 + + 18 + + + + SupportByVersion Office 12, 14, 15 + + 19 + + + + SupportByVersion Office 12, 14, 15 + + 20 + + + + SupportByVersion Office 12, 14, 15 + + 21 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864688.aspx + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + -4 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + -3 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + -2 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + -1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860886.aspx + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 4 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 5 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 6 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 7 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 8 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 9 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 10 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 11 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 12 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863793.aspx + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 4 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 5 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860278.aspx + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + -2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Office 12, 14, 15 + + 4 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861408.aspx + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + -2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 4 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 5 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 6 + + + + NetOffice COM Addin + + + + + MS-Office Registry Path + + + + + Creates an instance of the class + + + + + IRibbonExtensibility implementation + + target ribbon id, only used from Outlook and ignored in this standard impklementation. overwrite this method if you need a custom behavior + XML content oder string.Empty + + + + ICustomTaskPaneConsumer implementation + + factory proxy from host application + + + + The method is called while the CustomPane attribute is processed + + pane definition + true if paneInfo is modified, otherwise false to set the default or attribute values + + + + Called after any visibility changes + + pane instance + + + + Called after any position changes but not for size changes + + pane instance + + + + This is method is called while startup and ask for permissions to apply a tweak. + + name of the tweak + value of the tweak + true(default) or false if you dont want this tweak is affected to the addin instance + + + + Called for custom tweaks to apply the tweak. + + name for the tweak + value for the teak + + + + Called for custom tweaks to unload a tweak. Please note: This method is not called in case of unexpected termination. + You have no warranties for dispose your tweak. + + name for the tweak + value for the teak + + + + Creates an registry tweak entry in the current addin key + + addin type information + name for the tweak + value for the tweak + throw exception on error + true if key was created otherwise false + + + + Create the used factory. The method was called as first in the base ctor + + new Settings instance + + + + Create the necessary factory and was called in the first line in base ctor + + + + + + Checks for a static method, signed with the ErrorHandlerAttribute and call them if its available + + type information for the class wtih static method + origin method where the error comes from + occured exception + + + + Custom error handler + + origin method where the error comes from + occured exception + + + + Called from regasm while register + + Type information for the class + + + + Called from regasm while ungregister + + Type information for the class + + + + Derived Register Call Helper + + type for derived class + the method to call + arguments + + + + Derived Unregister Call Helper + + type for derived class + the method to call + arguments + + + + reads text file from ressource + + ressourceLocation + text content + + + + Try to detect the registry end for the current loaded host application(unkown) + + application proy + Application name or null if failed + + + + The used factory core + + + + + Type Information of the instance + + + + + Host Application Instance + + + + + Collection with all created custom Task Panes + + + + + TaskPaneFactory from CTPFactoryAvailable + + + + + ITaskPane Instances + + + + + Cached Error Method Delegate + + + + + Cached Register Error Method Delegate + + + + + The OnStartupComplete event occurs when the host application completes its startup routines, in the case where the COM add-in loads at startup. + If the add-in is not loaded when the application loads, the OnStartupComplete event does not occur — + even when the user loads the add-in in the COM Add-ins dialog box. When this event does occur, it occurs after the OnConnection event. + You can use the OnStartupComplete event procedure to run code that interacts with the application and that should not be run until the application has finished loading. + For example, if you want to display a form that gives users a choice of documents to create when they start the application, + you can put that code in the OnStartupComplete event procedure. + + + + + The Shutdown event occurs when the COM add-in is unloaded. + You can use the OnDisconnection event procedure to run code that restores any changes made to the application by the add-in and to perform general clean-up operations. + An add-in can be unloaded in one of the following ways: + - The user clears the check box next to the add-in in the COM Add-ins dialog box. + - The host application closes. If the add-in is loaded when the application closes, it is unloaded. + If the add-in's load behavior is set to Startup, it is reloaded when the application starts again. + - The Connect property of the corresponding COMAddIn object is set to False. + + + + + The OnConnection event occurs when the COM add-in is loaded (connected). An add-in can be loaded in one of the following ways: + The user starts the host application and the add-in's load behavior is specified to load when the application starts. + The user loads the add-in in the COM Add-ins dialog box. + The Connect property of the corresponding COMAddIn object is set to True. + For more information about the COMAddIn object, search the Microsoft® Office Visual Basic Reference Help index for "COMAddIn object." + + + + + The OnAddInsUpdate event occurs when the set of loaded COM add-ins changes. + When an add-in is loaded or unloaded, the OnAddInsUpdate event occurs in any other loaded add-ins. + For example, if add-ins A and B both are loaded currently, and then add-in C is loaded, + the OnAddInsUpdate event occurs in add-ins A and B. If C is unloaded, the OnAddInsUpdate event occurs again in add-ins A and B. + + + + + The OnBeginShutdown event occurs when the host application begins its shutdown routines, + in the case where the application closes while the COM add-in is still loaded. + If the add-in is not loaded when the application closes, + the OnBeginShutdown event does not occur. When this event does occur, it occurs before the OnDisconnection event. + You can use the OnBeginShutdown event procedure to run code when the user closes the application. For example, you can run code that saves form data to a file. + + + + + CoClass CustomTaskPane + SupportByVersion Office, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862782.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of CustomTaskPane + + + + + creates a new instance of CustomTaskPane + + registered ProgID + + + + returns all running Office.CustomTaskPane objects from the running object table(ROT) + + an Office.CustomTaskPane array + + + + returns a running Office.CustomTaskPane object from the running object table(ROT). the method takes the first element from the table + + an Office.CustomTaskPane object or null + + + + returns a running Office.CustomTaskPane object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Office.CustomTaskPane object or null + + + + creates active sink helper + + + + + SupportByVersion Office, 12,14,15 + + + + + SupportByVersion Office 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862422.aspx + + + + SupportByVersion Office, 12,14,15 + + + + + SupportByVersion Office 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865561.aspx + + + + DispatchInterface PickerProperties + SupportByVersion Office, 14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861162.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863501.aspx + + string Id + string Value + NetOffice.OfficeApi.Enums.MsoPickerField Type + + + + SupportByVersion Office 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863845.aspx + + string Id + + + + SupportByVersionAttribute Office, 14,15 + + + + + SupportByVersionAttribute Office, 14,15 + + + + + SupportByVersion Office 14, 15 + Get + + Int32 Index + + + + SupportByVersion Office 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861123.aspx + + + + + DispatchInterface SmartArtColors + SupportByVersion Office, 14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863429.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersionAttribute Office, 14,15 + + + + + SupportByVersionAttribute Office, 14,15 + + + + + SupportByVersion Office 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860919.aspx + Unknown COM Proxy + + + + + SupportByVersion Office 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861905.aspx + + + + + SupportByVersion Office 14, 15 + + + object Index + + + + DispatchInterface SmartArtLayouts + SupportByVersion Office, 14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860829.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersionAttribute Office, 14,15 + + + + + SupportByVersionAttribute Office, 14,15 + + + + + SupportByVersion Office 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864628.aspx + Unknown COM Proxy + + + + + SupportByVersion Office 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864623.aspx + + + + + SupportByVersion Office 14, 15 + + + object Index + + + + DispatchInterface SmartArtNodes + SupportByVersion Office, 14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861522.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861747.aspx + + + + + SupportByVersionAttribute Office, 14,15 + + + + + SupportByVersionAttribute Office, 14,15 + + + + + SupportByVersion Office 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865334.aspx + Unknown COM Proxy + + + + + SupportByVersion Office 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863078.aspx + + + + + SupportByVersion Office 14, 15 + + + object Index + + + + DispatchInterface IMsoDownBars + SupportByVersion Office, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 14, 15 + Get + + + + + DispatchInterface IMsoCorners + SupportByVersion Office, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 14, 15 + Get + + + + + TextRange2 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + Hidden stub .ctor + + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + Get + + optional Int32 Start + optional Int32 Length + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860549.aspx + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860549.aspx + Alias for get_Paragraphs + + optional Int32 Start + optional Int32 Length + + + + SupportByVersion Office 12, 14, 15 + Get + + optional Int32 Start + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860549.aspx + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860549.aspx + Alias for get_Paragraphs + + optional Int32 Start + + + + SupportByVersion Office 12, 14, 15 + Get + + optional Int32 Start + optional Int32 Length + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860794.aspx + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860794.aspx + Alias for get_Sentences + + optional Int32 Start + optional Int32 Length + + + + SupportByVersion Office 12, 14, 15 + Get + + optional Int32 Start + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860794.aspx + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860794.aspx + Alias for get_Sentences + + optional Int32 Start + + + + SupportByVersion Office 12, 14, 15 + Get + + optional Int32 Start + optional Int32 Length + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864053.aspx + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864053.aspx + Alias for get_Words + + optional Int32 Start + optional Int32 Length + + + + SupportByVersion Office 12, 14, 15 + Get + + optional Int32 Start + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864053.aspx + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864053.aspx + Alias for get_Words + + optional Int32 Start + + + + SupportByVersion Office 12, 14, 15 + Get + + optional Int32 Start + optional Int32 Length + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863305.aspx + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863305.aspx + Alias for get_Characters + + optional Int32 Start + optional Int32 Length + + + + SupportByVersion Office 12, 14, 15 + Get + + optional Int32 Start + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863305.aspx + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863305.aspx + Alias for get_Characters + + optional Int32 Start + + + + SupportByVersion Office 12, 14, 15 + Get + + optional Int32 Start + optional Int32 Length + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862044.aspx + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862044.aspx + Alias for get_Lines + + optional Int32 Start + optional Int32 Length + + + + SupportByVersion Office 12, 14, 15 + Get + + optional Int32 Start + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862044.aspx + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862044.aspx + Alias for get_Lines + + optional Int32 Start + + + + SupportByVersion Office 12, 14, 15 + Get + + optional Int32 Start + optional Int32 Length + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861768.aspx + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861768.aspx + Alias for get_Runs + + optional Int32 Start + optional Int32 Length + + + + SupportByVersion Office 12, 14, 15 + Get + + optional Int32 Start + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861768.aspx + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861768.aspx + Alias for get_Runs + + optional Int32 Start + + + + SupportByVersion Office 14, 15 + Get + + optional Int32 Start + optional Int32 Length + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860854.aspx + + + + SupportByVersion Office 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860854.aspx + Alias for get_MathZones + + optional Int32 Start + optional Int32 Length + + + + SupportByVersion Office 14, 15 + Get + + optional Int32 Start + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860854.aspx + + + + SupportByVersion Office 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860854.aspx + Alias for get_MathZones + + optional Int32 Start + + + + DispatchInterface TextRange2 + SupportByVersion Office, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863528.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861091.aspx + + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862180.aspx + + optional string NewText = + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862180.aspx + + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865495.aspx + + optional string NewText = + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865495.aspx + + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862495.aspx + + string FontName + Int32 CharNumber + optional NetOffice.OfficeApi.Enums.MsoTriState Unicode = 0 + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862495.aspx + + string FontName + Int32 CharNumber + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860564.aspx + + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862117.aspx + + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863743.aspx + + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862838.aspx + + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863850.aspx + + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862719.aspx + + NetOffice.OfficeApi.Enums.MsoClipboardFormat Format + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864574.aspx + + NetOffice.OfficeApi.Enums.MsoTextChangeCase Type + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861212.aspx + + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861820.aspx + + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863750.aspx + + string FindWhat + optional Int32 After = 0 + optional NetOffice.OfficeApi.Enums.MsoTriState MatchCase = 0 + optional NetOffice.OfficeApi.Enums.MsoTriState WholeWords = 0 + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863750.aspx + + string FindWhat + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863750.aspx + + string FindWhat + optional Int32 After = 0 + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863750.aspx + + string FindWhat + optional Int32 After = 0 + optional NetOffice.OfficeApi.Enums.MsoTriState MatchCase = 0 + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864978.aspx + + string FindWhat + string ReplaceWhat + optional Int32 After = 0 + optional NetOffice.OfficeApi.Enums.MsoTriState MatchCase = 0 + optional NetOffice.OfficeApi.Enums.MsoTriState WholeWords = 0 + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864978.aspx + + string FindWhat + string ReplaceWhat + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864978.aspx + + string FindWhat + string ReplaceWhat + optional Int32 After = 0 + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864978.aspx + + string FindWhat + string ReplaceWhat + optional Int32 After = 0 + optional NetOffice.OfficeApi.Enums.MsoTriState MatchCase = 0 + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865241.aspx + + Single X1 + Single Y1 + Single X2 + Single Y2 + Single X3 + Single Y3 + Single x4 + Single y4 + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861210.aspx + + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861750.aspx + + + + + SupportByVersion Office 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/jj227821.aspx + + NetOffice.OfficeApi.Enums.MsoChartFieldType ChartFieldType + optional string Formula = + optional Int32 Position = -1 + + + + SupportByVersion Office 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/jj227821.aspx + + NetOffice.OfficeApi.Enums.MsoChartFieldType ChartFieldType + + + + SupportByVersion Office 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/jj227821.aspx + + NetOffice.OfficeApi.Enums.MsoChartFieldType ChartFieldType + optional string Formula = + + + + SupportByVersionAttribute Office, 12,14,15 + + + + + SupportByVersionAttribute Office, 12,14,15 + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863807.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861203.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862210.aspx + Unknown COM Proxy + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860549.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860794.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864053.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863305.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862044.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861768.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862198.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860218.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861200.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861772.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863024.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863847.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863508.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860263.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861366.aspx + + + + + SupportByVersion Office 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860854.aspx + + + + + SupportByVersion Office 12, 14, 15 + + + object Index + + + + DispatchInterface CustomXMLValidationErrors + SupportByVersion Office, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860565.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860763.aspx + + NetOffice.OfficeApi.CustomXMLNode Node + string ErrorName + optional string ErrorText = + optional bool ClearedOnUpdate = true + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860763.aspx + + NetOffice.OfficeApi.CustomXMLNode Node + string ErrorName + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860763.aspx + + NetOffice.OfficeApi.CustomXMLNode Node + string ErrorName + optional string ErrorText = + + + + SupportByVersionAttribute Office, 12,14,15 + + + + + SupportByVersionAttribute Office, 12,14,15 + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862460.aspx + Unknown COM Proxy + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861469.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + + Int32 Index + + + + DispatchInterface _CustomXMLSchemaCollection + SupportByVersion Office, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860878.aspx + + Int32 Index + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860878.aspx + Alias for get_NamespaceURI + + Int32 Index + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864881.aspx + + optional string NamespaceURI = + optional string Alias = + optional string FileName = + optional bool InstallForAllUsers = false + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864881.aspx + + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864881.aspx + + optional string NamespaceURI = + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864881.aspx + + optional string NamespaceURI = + optional string Alias = + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864881.aspx + + optional string NamespaceURI = + optional string Alias = + optional string FileName = + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864690.aspx + + NetOffice.OfficeApi.CustomXMLSchemaCollection SchemaCollection + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864142.aspx + + + + + SupportByVersionAttribute Office, 12,14,15 + + + + + SupportByVersionAttribute Office, 12,14,15 + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862208.aspx + Unknown COM Proxy + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864015.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + + object Index + + + + DispatchInterface WebComponent + SupportByVersion Office, 10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + string PlaceHolderGraphic + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get/Set + + + + + DispatchInterface DiagramNodes + SupportByVersion Office, 10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + + + + SupportByVersionAttribute Office, 10,11,12,14,15 + + + + + SupportByVersionAttribute Office, 10,11,12,14,15 + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + object Index + + + + DispatchInterface SearchFolders + SupportByVersion Office, 10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861846.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861070.aspx + + NetOffice.OfficeApi.ScopeFolder ScopeFolder + + + + SupportByVersion Office 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865357.aspx + + Int32 Index + + + + SupportByVersionAttribute Office, 10,11,12,14,15 + + + + + SupportByVersionAttribute Office, 10,11,12,14,15 + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + + Int32 Index + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864908.aspx + + + + + DispatchInterface WebPageFont + SupportByVersion Office, 9,10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864941.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865546.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863960.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865471.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863486.aspx + + + + + DispatchInterface AnswerWizard + SupportByVersion Office, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + DispatchInterface IMsoDispCagNotifySink + SupportByVersion Office, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + object pClipMoniker + object pItemMoniker + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + + + + DispatchInterface ShadowFormat + SupportByVersion Office, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Single Increment + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Single Increment + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + DispatchInterface GroupShapes + SupportByVersion Office, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + object Index + + + + SupportByVersionAttribute Office, 9,10,11,12,14,15 + + + + + SupportByVersionAttribute Office, 9,10,11,12,14,15 + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + object Index + + + + Interface IMsoErrorBars + SupportByVersion Office, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 14, 15 + Get + + + + + Interface IMsoSeries + SupportByVersion Office, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + + + optional NetOffice.OfficeApi.Enums.XlDataLabelsType Type = 2 + optional object IMsoLegendKey + optional object AutoText + optional object HasLeaderLines + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + + + optional NetOffice.OfficeApi.Enums.XlDataLabelsType Type = 2 + + + + SupportByVersion Office 12, 14, 15 + + + optional NetOffice.OfficeApi.Enums.XlDataLabelsType Type = 2 + optional object IMsoLegendKey + + + + SupportByVersion Office 12, 14, 15 + + + optional NetOffice.OfficeApi.Enums.XlDataLabelsType Type = 2 + optional object IMsoLegendKey + optional object AutoText + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + + + optional object Index + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + + + NetOffice.OfficeApi.Enums.XlErrorBarDirection Direction + NetOffice.OfficeApi.Enums.XlErrorBarInclude Include + NetOffice.OfficeApi.Enums.XlErrorBarType Type + optional object Amount + optional object MinusValues + + + + SupportByVersion Office 12, 14, 15 + + + NetOffice.OfficeApi.Enums.XlErrorBarDirection Direction + NetOffice.OfficeApi.Enums.XlErrorBarInclude Include + NetOffice.OfficeApi.Enums.XlErrorBarType Type + + + + SupportByVersion Office 12, 14, 15 + + + NetOffice.OfficeApi.Enums.XlErrorBarDirection Direction + NetOffice.OfficeApi.Enums.XlErrorBarInclude Include + NetOffice.OfficeApi.Enums.XlErrorBarType Type + optional object Amount + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + + + optional object Index + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + + + optional object Index + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + + + NetOffice.OfficeApi.Enums.XlChartType ChartType + + + + SupportByVersion Office 12, 14, 15 + + + optional NetOffice.OfficeApi.Enums.XlDataLabelsType Type = 2 + optional object IMsoLegendKey + optional object AutoText + optional object HasLeaderLines + optional object ShowSeriesName + optional object ShowCategoryName + optional object ShowValue + optional object ShowPercentage + optional object ShowBubbleSize + optional object Separator + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + + + optional NetOffice.OfficeApi.Enums.XlDataLabelsType Type = 2 + + + + SupportByVersion Office 12, 14, 15 + + + optional NetOffice.OfficeApi.Enums.XlDataLabelsType Type = 2 + optional object IMsoLegendKey + + + + SupportByVersion Office 12, 14, 15 + + + optional NetOffice.OfficeApi.Enums.XlDataLabelsType Type = 2 + optional object IMsoLegendKey + optional object AutoText + + + + SupportByVersion Office 12, 14, 15 + + + optional NetOffice.OfficeApi.Enums.XlDataLabelsType Type = 2 + optional object IMsoLegendKey + optional object AutoText + optional object HasLeaderLines + + + + SupportByVersion Office 12, 14, 15 + + + optional NetOffice.OfficeApi.Enums.XlDataLabelsType Type = 2 + optional object IMsoLegendKey + optional object AutoText + optional object HasLeaderLines + optional object ShowSeriesName + + + + SupportByVersion Office 12, 14, 15 + + + optional NetOffice.OfficeApi.Enums.XlDataLabelsType Type = 2 + optional object IMsoLegendKey + optional object AutoText + optional object HasLeaderLines + optional object ShowSeriesName + optional object ShowCategoryName + + + + SupportByVersion Office 12, 14, 15 + + + optional NetOffice.OfficeApi.Enums.XlDataLabelsType Type = 2 + optional object IMsoLegendKey + optional object AutoText + optional object HasLeaderLines + optional object ShowSeriesName + optional object ShowCategoryName + optional object ShowValue + + + + SupportByVersion Office 12, 14, 15 + + + optional NetOffice.OfficeApi.Enums.XlDataLabelsType Type = 2 + optional object IMsoLegendKey + optional object AutoText + optional object HasLeaderLines + optional object ShowSeriesName + optional object ShowCategoryName + optional object ShowValue + optional object ShowPercentage + + + + SupportByVersion Office 12, 14, 15 + + + optional NetOffice.OfficeApi.Enums.XlDataLabelsType Type = 2 + optional object IMsoLegendKey + optional object AutoText + optional object HasLeaderLines + optional object ShowSeriesName + optional object ShowCategoryName + optional object ShowValue + optional object ShowPercentage + optional object ShowBubbleSize + + + + SupportByVersion Office 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 14, 15 + Get + + + + + SupportByVersion Office 14, 15 + Get/Set + + + + + SupportByVersion Office 14, 15 + Get + + + + + SupportByVersion Office 14, 15 + Get/Set + + + + + SupportByVersion Office 14, 15 + Get/Set + + + + + SupportByVersion Office 15 + Get/Set + + + + + SupportByVersion Office 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863067.aspx + + + + SupportByVersion Office 14, 15 + + 0 + + + + SupportByVersion Office 14, 15 + + 1 + + + + SupportByVersion Office 14, 15 + + 2 + + + + SupportByVersion Office 14, 15 + + 3 + + + + SupportByVersion Office 14, 15 + + 4 + + + + SupportByVersion Office 14, 15 + + 5 + + + + SupportByVersion Office 14, 15 + + 6 + + + + SupportByVersion Office 14, 15 + + 7 + + + + SupportByVersion Office 14, 15 + + 8 + + + + SupportByVersion Office 14, 15 + + 9 + + + + SupportByVersion Office 14, 15 + + 10 + + + + SupportByVersion Office 14, 15 + + 11 + + + + SupportByVersion Office 14, 15 + + 12 + + + + SupportByVersion Office 14, 15 + + 13 + + + + SupportByVersion Office 14, 15 + + 14 + + + + SupportByVersion Office 14, 15 + + 15 + + + + SupportByVersion Office 14, 15 + + 16 + + + + SupportByVersion Office 14, 15 + + 17 + + + + SupportByVersion Office 14, 15 + + 18 + + + + SupportByVersion Office 14, 15 + + 19 + + + + SupportByVersion Office 14, 15 + + 20 + + + + SupportByVersion Office 14, 15 + + 21 + + + + SupportByVersion Office 14, 15 + + 22 + + + + SupportByVersion Office 14, 15 + + 23 + + + + SupportByVersion Office 14, 15 + + 24 + + + + SupportByVersion Office 14, 15 + + 25 + + + + SupportByVersion Office 14, 15 + + 26 + + + + SupportByVersion Office 14, 15 + + 27 + + + + SupportByVersion Office 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861902.aspx + + + + SupportByVersion Office 14, 15 + + 0 + + + + SupportByVersion Office 14, 15 + + 1 + + + + SupportByVersion Office 14, 15 + + 2 + + + + SupportByVersion Office 14, 15 + + 3 + + + + SupportByVersion Office 14, 15 + + 4 + + + + SupportByVersion Office 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860496.aspx + + + + SupportByVersion Office 14, 15 + + 0 + + + + SupportByVersion Office 14, 15 + + 1 + + + + SupportByVersion Office 14, 15 + + 2 + + + + SupportByVersion Office 14, 15 + + 3 + + + + SupportByVersion Office 14, 15 + + + + + SupportByVersion Office 14, 15 + + 1 + + + + SupportByVersion Office 14, 15 + + 2 + + + + SupportByVersion Office 14, 15 + + 3 + + + + SupportByVersion Office 14, 15 + + 4 + + + + SupportByVersion Office 14, 15 + + 5 + + + + SupportByVersion Office 14, 15 + + 6 + + + + SupportByVersion Office 14, 15 + + 7 + + + + SupportByVersion Office 14, 15 + + 8 + + + + SupportByVersion Office 14, 15 + + 9 + + + + SupportByVersion Office 12, 14, 15 + + + + + SupportByVersion Office 12, 14, 15 + + -4105 + + + + SupportByVersion Office 12, 14, 15 + + -4114 + + + + SupportByVersion Office 12, 14, 15 + + 2 + + + + SupportByVersion Office 12, 14, 15 + + 4 + + + + SupportByVersion Office 12, 14, 15 + + + + + SupportByVersion Office 12, 14, 15 + + -4105 + + + + SupportByVersion Office 12, 14, 15 + + -4111 + + + + SupportByVersion Office 12, 14, 15 + + -4114 + + + + SupportByVersion Office 12, 14, 15 + + 2 + + + + SupportByVersion Office 12, 14, 15 + + 3 + + + + SupportByVersion Office 12, 14, 15 + + -4099 + + + + SupportByVersion Office 12, 14, 15 + + -4103 + + + + SupportByVersion Office 12, 14, 15 + + -1 + + + + SupportByVersion Office 12, 14, 15 + + -4142 + + + + SupportByVersion Office 14, 15 + + 0 + + + + SupportByVersion Office 14, 15 + + 1 + + + + SupportByVersion Office 14, 15 + + 1 + + + + SupportByVersion Office 14, 15 + + -4107 + + + + SupportByVersion Office 14, 15 + + -4108 + + + + SupportByVersion Office 14, 15 + + 9 + + + + SupportByVersion Office 14, 15 + + 8 + + + + SupportByVersion Office 14, 15 + + 2 + + + + SupportByVersion Office 14, 15 + + 16 + + + + SupportByVersion Office 14, 15 + + 4 + + + + SupportByVersion Office 14, 15 + + 2 + + + + SupportByVersion Office 14, 15 + + -4117 + + + + SupportByVersion Office 14, 15 + + 5 + + + + SupportByVersion Office 14, 15 + + 1 + + + + SupportByVersion Office 14, 15 + + 1 + + + + SupportByVersion Office 14, 15 + + 17 + + + + SupportByVersion Office 14, 15 + + -4124 + + + + SupportByVersion Office 14, 15 + + -4125 + + + + SupportByVersion Office 14, 15 + + -4126 + + + + SupportByVersion Office 14, 15 + + 18 + + + + SupportByVersion Office 14, 15 + + 15 + + + + SupportByVersion Office 14, 15 + + -4127 + + + + SupportByVersion Office 14, 15 + + 2 + + + + SupportByVersion Office 14, 15 + + -4130 + + + + SupportByVersion Office 14, 15 + + -4131 + + + + SupportByVersion Office 14, 15 + + 13 + + + + SupportByVersion Office 14, 15 + + 11 + + + + SupportByVersion Office 14, 15 + + 14 + + + + SupportByVersion Office 14, 15 + + 12 + + + + SupportByVersion Office 14, 15 + + -4134 + + + + SupportByVersion Office 14, 15 + + 2 + + + + SupportByVersion Office 14, 15 + + 4 + + + + SupportByVersion Office 14, 15 + + 3 + + + + SupportByVersion Office 14, 15 + + 4 + + + + SupportByVersion Office 14, 15 + + 3 + + + + SupportByVersion Office 14, 15 + + 3 + + + + SupportByVersion Office 14, 15 + + 2 + + + + SupportByVersion Office 14, 15 + + 9 + + + + SupportByVersion Office 14, 15 + + 2 + + + + SupportByVersion Office 14, 15 + + -4152 + + + + SupportByVersion Office 14, 15 + + 3 + + + + SupportByVersion Office 14, 15 + + 10 + + + + SupportByVersion Office 14, 15 + + 4 + + + + SupportByVersion Office 14, 15 + + 5 + + + + SupportByVersion Office 14, 15 + + 3 + + + + SupportByVersion Office 14, 15 + + 2 + + + + SupportByVersion Office 14, 15 + + 2 + + + + SupportByVersion Office 14, 15 + + 1 + + + + SupportByVersion Office 14, 15 + + 1 + + + + SupportByVersion Office 14, 15 + + 5 + + + + SupportByVersion Office 14, 15 + + 4 + + + + SupportByVersion Office 14, 15 + + -4160 + + + + SupportByVersion Office 14, 15 + + 2 + + + + SupportByVersion Office 14, 15 + + 3 + + + + SupportByVersion Office 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861435.aspx + + + + SupportByVersion Office 12, 14, 15 + + -2 + + + + SupportByVersion Office 12, 14, 15 + + 0 + + + + SupportByVersion Office 12, 14, 15 + + 1 + + + + SupportByVersion Office 12, 14, 15 + + 2 + + + + SupportByVersion Office 12, 14, 15 + + 3 + + + + SupportByVersion Office 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865220.aspx + + + + SupportByVersion Office 12, 14, 15 + + 0 + + + + SupportByVersion Office 12, 14, 15 + + 1 + + + + SupportByVersion Office 12, 14, 15 + + 2 + + + + SupportByVersion Office 12, 14, 15 + + 3 + + + + SupportByVersion Office 12, 14, 15 + + 4 + + + + SupportByVersion Office 12, 14, 15 + + 5 + + + + SupportByVersion Office 12, 14, 15 + + 6 + + + + SupportByVersion Office 12, 14, 15 + + 7 + + + + SupportByVersion Office 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861762.aspx + + + + SupportByVersion Office 11, 12, 14, 15 + + 0 + + + + SupportByVersion Office 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 11, 12, 14, 15 + + 3 + + + + SupportByVersion Office 11, 12, 14, 15 + + 4 + + + + SupportByVersion Office 11, 12, 14, 15 + + 5 + + + + SupportByVersion Office 11, 12, 14, 15 + + 6 + + + + SupportByVersion Office 12, 14, 15 + + 0 + + + + SupportByVersion Office 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862072.aspx + + + + SupportByVersion Office 11, 12, 14, 15 + + 0 + + + + SupportByVersion Office 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 11, 12, 14, 15 + + 3 + + + + SupportByVersion Office 11, 12, 14, 15 + + 4 + + + + SupportByVersion Office 11, 12, 14, 15 + + 5 + + + + SupportByVersion Office 11, 12, 14, 15 + + 6 + + + + SupportByVersion Office 11, 12, 14, 15 + + 7 + + + + SupportByVersion Office 11, 12, 14, 15 + + 8 + + + + SupportByVersion Office 11, 12, 14, 15 + + 9 + + + + SupportByVersion Office 11, 12, 14, 15 + + 10 + + + + SupportByVersion Office 11, 12, 14, 15 + + 11 + + + + SupportByVersion Office 11, 12, 14, 15 + + 12 + + + + SupportByVersion Office 11, 12, 14, 15 + + 13 + + + + SupportByVersion Office 11, 12, 14, 15 + + 14 + + + + SupportByVersion Office 11, 12, 14, 15 + + 15 + + + + SupportByVersion Office 11, 12, 14, 15 + + 16 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862382.aspx + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 4 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862540.aspx + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864869.aspx + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 4 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 5 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 6 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 7 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 8 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 9 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 10 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 4 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 5 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 6 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 7 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864634.aspx + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 4 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 5 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865474.aspx + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861432.aspx + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 4 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 5 + + + + DispatchInterface EffectParameter + SupportByVersion Office, 14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863145.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862852.aspx + + + + + SupportByVersion Office 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861425.aspx + + + + + DispatchInterface RulerLevels2 + SupportByVersion Office, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860224.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersionAttribute Office, 12,14,15 + + + + + SupportByVersionAttribute Office, 12,14,15 + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860216.aspx + Unknown COM Proxy + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863129.aspx + + + + + SupportByVersion Office 12, 14, 15 + + + object Index + + + + DispatchInterface ThemeFonts + SupportByVersion Office, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861174.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersionAttribute Office, 12,14,15 + + + + + SupportByVersionAttribute Office, 12,14,15 + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864949.aspx + Unknown COM Proxy + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861843.aspx + + + + + SupportByVersion Office 12, 14, 15 + + + NetOffice.OfficeApi.Enums.MsoFontLanguageIndex Index + + + + DispatchInterface ReflectionFormat + SupportByVersion Office, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863140.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861491.aspx + + + + + SupportByVersion Office 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861198.aspx + + + + + SupportByVersion Office 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862407.aspx + + + + + SupportByVersion Office 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864080.aspx + + + + + SupportByVersion Office 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865483.aspx + + + + + DispatchInterface GradientStop + SupportByVersion Office, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863876.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860253.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864966.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864671.aspx + + + + + DispatchInterface SignatureSetup + SupportByVersion Office, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865226.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860803.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863130.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863744.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860539.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862848.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861399.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861142.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860571.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861064.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864950.aspx + + + + + DispatchInterface WorkflowTask + SupportByVersion Office, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863345.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863536.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863854.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860221.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861217.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865575.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865524.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864072.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861453.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862844.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861139.aspx + + + + + DispatchInterface SharedWorkspaceLinks + SupportByVersion Office, 11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863849.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862533.aspx + + string URL + optional object Description + optional object Notes + + + + SupportByVersion Office 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862533.aspx + + string URL + + + + SupportByVersion Office 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862533.aspx + + string URL + optional object Description + + + + SupportByVersionAttribute Office, 11,12,14,15 + + + + + SupportByVersionAttribute Office, 11,12,14,15 + + + + + SupportByVersion Office 11, 12, 14, 15 + Get + + Int32 Index + + + + SupportByVersion Office 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864175.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861528.aspx + Unknown COM Proxy + + + + + SupportByVersion Office 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861770.aspx + + + + + DispatchInterface WebComponentProperties + SupportByVersion Office, 10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get/Set + + + + + DispatchInterface WebComponentFormat + SupportByVersion Office, 10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get/Set + + + + + DispatchInterface LanguageSettings + SupportByVersion Office, 9,10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863125.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863438.aspx + + NetOffice.OfficeApi.Enums.MsoAppLanguageID Id + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863438.aspx + Alias for get_LanguageID + + NetOffice.OfficeApi.Enums.MsoAppLanguageID Id + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861143.aspx + + NetOffice.OfficeApi.Enums.MsoLanguageID lid + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861143.aspx + Alias for get_LanguagePreferredForEditing + + NetOffice.OfficeApi.Enums.MsoLanguageID lid + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862054.aspx + Unknown COM Proxy + + + + + DispatchInterface CalloutFormat + SupportByVersion Office, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Single Drop + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Single Length + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + NetOffice.OfficeApi.Enums.MsoCalloutDropType DropType + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + Interface IConverterApplicationPreferences + SupportByVersion Office, 14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862807.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864148.aspx + + Int32 plcid + + + + SupportByVersion Office 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860588.aspx + + Int32 phwnd + + + + SupportByVersion Office 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864579.aspx + + string pbstrApplication + + + + SupportByVersion Office 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862557.aspx + + Int32 pFormat + + + + IMsoDataLabel + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + Hidden stub .ctor + + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + Get + + optional object Start + optional object Length + + + + SupportByVersion Office 12, 14, 15 + Alias for get_Characters + + optional object Start + optional object Length + + + + SupportByVersion Office 12, 14, 15 + Get + + optional object Start + + + + SupportByVersion Office 12, 14, 15 + Alias for get_Characters + + optional object Start + + + + Interface IMsoDataLabel + SupportByVersion Office, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 14, 15 + Get + + + + + SupportByVersion Office 14, 15 + Get/Set + + + + + SupportByVersion Office 14, 15 + Get/Set + + + + + SupportByVersion Office 14, 15 + Get/Set + + + + + SupportByVersion Office 14, 15 + Get/Set + + + + + SupportByVersion Office 14, 15 + Get/Set + + + + + SupportByVersion Office 15 + Get + + + + + SupportByVersion Office 15 + Get + + + + + SupportByVersion Office 15 + Get/Set + + + + + SupportByVersion Office 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/jj227893.aspx + + + + SupportByVersion Office 15 + + 1 + + + + SupportByVersion Office 15 + + 2 + + + + SupportByVersion Office 15 + + 3 + + + + SupportByVersion Office 15 + + 4 + + + + SupportByVersion Office 15 + + 5 + + + + SupportByVersion Office 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864886.aspx + + + + SupportByVersion Office 14, 15 + + 0 + + + + SupportByVersion Office 14, 15 + + 1 + + + + SupportByVersion Office 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861105.aspx + + + + SupportByVersion Office 12, 14, 15 + + -2 + + + + SupportByVersion Office 12, 14, 15 + + 0 + + + + SupportByVersion Office 12, 14, 15 + + 1 + + + + SupportByVersion Office 12, 14, 15 + + 2 + + + + SupportByVersion Office 12, 14, 15 + + 3 + + + + SupportByVersion Office 12, 14, 15 + + + + + SupportByVersion Office 12, 14, 15 + + -4107 + + + + SupportByVersion Office 12, 14, 15 + + -4108 + + + + SupportByVersion Office 12, 14, 15 + + -4117 + + + + SupportByVersion Office 12, 14, 15 + + -4130 + + + + SupportByVersion Office 12, 14, 15 + + -4160 + + + + SupportByVersion Office 12, 14, 15 + + + + + SupportByVersion Office 12, 14, 15 + + 0 + + + + SupportByVersion Office 12, 14, 15 + + 2 + + + + SupportByVersion Office 12, 14, 15 + + 3 + + + + SupportByVersion Office 12, 14, 15 + + 4 + + + + SupportByVersion Office 12, 14, 15 + + 5 + + + + SupportByVersion Office 12, 14, 15 + + 6 + + + + SupportByVersion Office 12, 14, 15 + + 7 + + + + SupportByVersion Office 12, 14, 15 + + 8 + + + + SupportByVersion Office 12, 14, 15 + + 9 + + + + SupportByVersion Office 12, 14, 15 + + 10 + + + + SupportByVersion Office 12, 14, 15 + + 11 + + + + SupportByVersion Office 12, 14, 15 + + 12 + + + + SupportByVersion Office 12, 14, 15 + + 13 + + + + SupportByVersion Office 12, 14, 15 + + 14 + + + + SupportByVersion Office 12, 14, 15 + + 15 + + + + SupportByVersion Office 12, 14, 15 + + 16 + + + + SupportByVersion Office 12, 14, 15 + + 17 + + + + SupportByVersion Office 12, 14, 15 + + 18 + + + + SupportByVersion Office 12, 14, 15 + + 19 + + + + SupportByVersion Office 12, 14, 15 + + 20 + + + + SupportByVersion Office 12, 14, 15 + + 21 + + + + SupportByVersion Office 12, 14, 15 + + 22 + + + + SupportByVersion Office 12, 14, 15 + + 23 + + + + SupportByVersion Office 12, 14, 15 + + 24 + + + + SupportByVersion Office 12, 14, 15 + + 25 + + + + SupportByVersion Office 12, 14, 15 + + 26 + + + + SupportByVersion Office 12, 14, 15 + + 27 + + + + SupportByVersion Office 12, 14, 15 + + 28 + + + + SupportByVersion Office 12, 14, 15 + + 29 + + + + SupportByVersion Office 12, 14, 15 + + 30 + + + + SupportByVersion Office 12, 14, 15 + + 31 + + + + SupportByVersion Office 12, 14, 15 + + 32 + + + + SupportByVersion Office 12, 14, 15 + + + + + SupportByVersion Office 12, 14, 15 + + 3 + + + + SupportByVersion Office 12, 14, 15 + + 2 + + + + SupportByVersion Office 12, 14, 15 + + 1 + + + + SupportByVersion Office 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864685.aspx + + + + SupportByVersion Office 12, 14, 15 + + 0 + + + + SupportByVersion Office 12, 14, 15 + + 1 + + + + SupportByVersion Office 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862530.aspx + + + + SupportByVersion Office 12, 14, 15 + + -2 + + + + SupportByVersion Office 12, 14, 15 + + 0 + + + + SupportByVersion Office 12, 14, 15 + + 1 + + + + SupportByVersion Office 12, 14, 15 + + 2 + + + + SupportByVersion Office 12, 14, 15 + + 3 + + + + SupportByVersion Office 12, 14, 15 + + 4 + + + + SupportByVersion Office 12, 14, 15 + + 5 + + + + SupportByVersion Office 12, 14, 15 + + 6 + + + + SupportByVersion Office 12, 14, 15 + + 7 + + + + SupportByVersion Office 12, 14, 15 + + 8 + + + + SupportByVersion Office 12, 14, 15 + + 9 + + + + SupportByVersion Office 12, 14, 15 + + 10 + + + + SupportByVersion Office 12, 14, 15 + + 11 + + + + SupportByVersion Office 12, 14, 15 + + 12 + + + + SupportByVersion Office 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865367.aspx + + + + SupportByVersion Office 12, 14, 15 + + -2 + + + + SupportByVersion Office 12, 14, 15 + + 0 + + + + SupportByVersion Office 12, 14, 15 + + 1 + + + + SupportByVersion Office 12, 14, 15 + + 2 + + + + SupportByVersion Office 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861776.aspx + + + + SupportByVersion Office 12, 14, 15 + + -2 + + + + SupportByVersion Office 12, 14, 15 + + 1 + + + + SupportByVersion Office 12, 14, 15 + + 2 + + + + SupportByVersion Office 12, 14, 15 + + 3 + + + + SupportByVersion Office 12, 14, 15 + + 4 + + + + SupportByVersion Office 12, 14, 15 + + 5 + + + + SupportByVersion Office 12, 14, 15 + + 6 + + + + SupportByVersion Office 12, 14, 15 + + 7 + + + + SupportByVersion Office 12, 14, 15 + + 8 + + + + SupportByVersion Office 12, 14, 15 + + 9 + + + + SupportByVersion Office 12, 14, 15 + + 10 + + + + SupportByVersion Office 12, 14, 15 + + 11 + + + + SupportByVersion Office 12, 14, 15 + + 12 + + + + SupportByVersion Office 12, 14, 15 + + 13 + + + + SupportByVersion Office 12, 14, 15 + + 14 + + + + SupportByVersion Office 12, 14, 15 + + 15 + + + + SupportByVersion Office 12, 14, 15 + + 16 + + + + SupportByVersion Office 12, 14, 15 + + 17 + + + + SupportByVersion Office 12, 14, 15 + + 18 + + + + SupportByVersion Office 12, 14, 15 + + 19 + + + + SupportByVersion Office 12, 14, 15 + + 20 + + + + SupportByVersion Office 12, 14, 15 + + 21 + + + + SupportByVersion Office 12, 14, 15 + + 22 + + + + SupportByVersion Office 12, 14, 15 + + 23 + + + + SupportByVersion Office 12, 14, 15 + + 24 + + + + SupportByVersion Office 12, 14, 15 + + 25 + + + + SupportByVersion Office 12, 14, 15 + + 26 + + + + SupportByVersion Office 12, 14, 15 + + 27 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 4 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 5 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 6 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 7 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 8 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 9 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 10 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 11 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 12 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 13 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 14 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 15 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 16 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 17 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 18 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 19 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 20 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 21 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 22 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 23 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 24 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 25 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 26 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 27 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 28 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 29 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 30 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 31 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 32 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 33 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 34 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 35 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 36 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 37 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 38 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 39 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 40 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 41 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 42 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 43 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 44 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 45 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 46 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 47 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 48 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 49 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 50 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 51 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 52 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 53 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 54 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 55 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 56 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 57 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 58 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 59 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 60 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 61 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 62 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 63 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 64 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 65 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 66 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 67 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 68 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 69 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 70 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 71 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 72 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 73 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 4 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865240.aspx + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1041 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1042 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2052 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1028 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861775.aspx + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 4 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 8 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 16 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 32 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 64 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864912.aspx + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + -2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 4 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 5 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864921.aspx + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + -2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 4 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 5 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 6 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 7 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 8 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 9 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 10 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 11 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 12 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 13 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 14 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 15 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 16 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 17 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 18 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 19 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 20 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 21 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 22 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 23 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 24 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 25 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 26 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 27 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 28 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 29 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 30 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 31 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 32 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 33 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 34 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 35 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 36 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 37 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 38 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 39 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 40 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864672.aspx + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + -2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 4 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 5 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 6 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 7 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 8 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 9 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 10 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 11 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 12 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 13 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 14 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 15 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 16 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 17 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 18 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 19 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 20 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 21 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 22 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 23 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 24 + + + + DispatchInterface SmartArtQuickStyles + SupportByVersion Office, 14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864858.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersionAttribute Office, 14,15 + + + + + SupportByVersionAttribute Office, 14,15 + + + + + SupportByVersion Office 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860543.aspx + Unknown COM Proxy + + + + + SupportByVersion Office 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863986.aspx + + + + + SupportByVersion Office 14, 15 + + + object Index + + + + DispatchInterface TabStops2 + SupportByVersion Office, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860606.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862827.aspx + + NetOffice.OfficeApi.Enums.MsoTabStopType Type + Single Position + + + + SupportByVersionAttribute Office, 12,14,15 + + + + + SupportByVersionAttribute Office, 12,14,15 + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865323.aspx + Unknown COM Proxy + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862735.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862551.aspx + + + + + SupportByVersion Office 12, 14, 15 + + + object Index + + + + DispatchInterface ThemeFont + SupportByVersion Office, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860583.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861521.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862108.aspx + Unknown COM Proxy + + + + + DispatchInterface ThemeColorScheme + SupportByVersion Office, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863682.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860912.aspx + + NetOffice.OfficeApi.Enums.MsoThemeColorSchemeIndex Index + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862095.aspx + + string FileName + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861898.aspx + + string FileName + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862172.aspx + + string Name + + + + SupportByVersionAttribute Office, 12,14,15 + + + + + SupportByVersionAttribute Office, 12,14,15 + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864930.aspx + Unknown COM Proxy + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861492.aspx + + + + + DispatchInterface ILicAgent + SupportByVersion Office, 10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + Int32 dwBPC + Int32 dwMode + string bstrLicSource + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + string bstrNewVal + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + string bstrNewVal + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + string bstrNewVal + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + string bstrNewVal + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + string bstrNewVal + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + string bstrNewVal + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + string bstrNewVal + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + string bstrNewVal + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + string bstrNewVal + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + string bstrNewVal + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + string bstrNewVal + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + Int32 dwNewVal + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + string bstrNewVal + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + string bstrNewVal + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + string bstrNewVal + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + string bstrNewVal + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + string bstrNewVal + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + string bstrNewVal + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + string bstrNewVal + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + string bstrNewVal + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + string bstrNewVal + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + string bstrNewVal + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + string bstrNewVal + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + string bstrNewVal + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + string bstrNewVal + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + Int32 bSave + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + string bstrCountryCode + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + string bstrCountryCode + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + string bstrVATNumber + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + string bstrCCCode + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + string bstrCCNumber + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + Int32 dwCCYear + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + Int32 dwCCMonth + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + Int32 dwIndex + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + Int32 dwIndex + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + Int32 bNewVal + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + Int32 bReviseCustInfo + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + Int32 bWantUpgrade + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + string bstrVal + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + string bstrCIDIID + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + Int32 bIsLicenseRequest + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + Int32 dwCurrencyIndex + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + Int32 dwIndex + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + Int32 dwCurrencyIndex + Int32 dwIndex + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + Int32 dwCurrencyOption + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + + + + DispatchInterface ILicValidator + SupportByVersion Office, 10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get/Set + + + + + DispatchInterface FileTypes + SupportByVersion Office, 10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862049.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861726.aspx + + NetOffice.OfficeApi.Enums.MsoFileType FileType + + + + SupportByVersion Office 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860597.aspx + + Int32 Index + + + + SupportByVersionAttribute Office, 10,11,12,14,15 + + + + + SupportByVersionAttribute Office, 10,11,12,14,15 + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + + Int32 Index + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864990.aspx + + + + + DispatchInterface IMsoEnvelopeVB + SupportByVersion Office, 10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + DispatchInterface FillFormat + SupportByVersion Office, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + NetOffice.OfficeApi.Enums.MsoGradientStyle Style + Int32 Variant + Single Degree + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + NetOffice.OfficeApi.Enums.MsoPatternType Pattern + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + NetOffice.OfficeApi.Enums.MsoGradientStyle Style + Int32 Variant + NetOffice.OfficeApi.Enums.MsoPresetGradientType PresetGradientType + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + NetOffice.OfficeApi.Enums.MsoPresetTexture PresetTexture + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + NetOffice.OfficeApi.Enums.MsoGradientStyle Style + Int32 Variant + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + string PictureFile + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + string TextureFile + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 14, 15 + Get + + + + + SupportByVersion Office 14, 15 + Get/Set + + + + + Interface IConverterPreferences + SupportByVersion Office, 14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864179.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863141.aspx + + Int32 pfMacroEnabled + + + + SupportByVersion Office 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865570.aspx + + Int32 pFormat + + + + SupportByVersion Office 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860851.aspx + + Int32 pfLossySave + + + + Interface SeriesCollection + SupportByVersion Office, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + + + object Source + optional NetOffice.OfficeApi.Enums.XlRowCol Rowcol = 2 + optional object SeriesLabels + optional object CategoryLabels + optional object Replace + + + + SupportByVersion Office 12, 14, 15 + + + object Source + + + + SupportByVersion Office 12, 14, 15 + + + object Source + optional NetOffice.OfficeApi.Enums.XlRowCol Rowcol = 2 + + + + SupportByVersion Office 12, 14, 15 + + + object Source + optional NetOffice.OfficeApi.Enums.XlRowCol Rowcol = 2 + optional object SeriesLabels + + + + SupportByVersion Office 12, 14, 15 + + + object Source + optional NetOffice.OfficeApi.Enums.XlRowCol Rowcol = 2 + optional object SeriesLabels + optional object CategoryLabels + + + + SupportByVersion Office 12, 14, 15 + + + object Source + optional object Rowcol + optional object CategoryLabels + + + + SupportByVersion Office 12, 14, 15 + + + object Source + + + + SupportByVersion Office 12, 14, 15 + + + object Source + optional object Rowcol + + + + SupportByVersion Office 12, 14, 15 + + + optional NetOffice.OfficeApi.Enums.XlRowCol Rowcol = 2 + optional object SeriesLabels + optional object CategoryLabels + optional object Replace + optional object NewSeries + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + + + optional NetOffice.OfficeApi.Enums.XlRowCol Rowcol = 2 + + + + SupportByVersion Office 12, 14, 15 + + + optional NetOffice.OfficeApi.Enums.XlRowCol Rowcol = 2 + optional object SeriesLabels + + + + SupportByVersion Office 12, 14, 15 + + + optional NetOffice.OfficeApi.Enums.XlRowCol Rowcol = 2 + optional object SeriesLabels + optional object CategoryLabels + + + + SupportByVersion Office 12, 14, 15 + + + optional NetOffice.OfficeApi.Enums.XlRowCol Rowcol = 2 + optional object SeriesLabels + optional object CategoryLabels + optional object Replace + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersionAttribute Office, 12,14,15 + + + + + SupportByVersionAttribute Office, 12,14,15 + + + + + SupportByVersion Office 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 14, 15 + Get + + + + + SupportByVersion Office 14, 15 + Get + + object Index + + + + SupportByVersion Office 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/jj227794.aspx + + + + SupportByVersion Office 15 + + 0 + + + + SupportByVersion Office 15 + + 1 + + + + SupportByVersion Office 15 + + 2 + + + + SupportByVersion Office 12, 14, 15 + + + + + SupportByVersion Office 12, 14, 15 + + 3 + + + + SupportByVersion Office 12, 14, 15 + + 1 + + + + SupportByVersion Office 12, 14, 15 + + 2 + + + + SupportByVersion Office 12, 14, 15 + + + + + SupportByVersion Office 12, 14, 15 + + -4170 + + + + SupportByVersion Office 12, 14, 15 + + -4128 + + + + SupportByVersion Office 12, 14, 15 + + -4171 + + + + SupportByVersion Office 12, 14, 15 + + -4166 + + + + SupportByVersion Office 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860734.aspx + + + + SupportByVersion Office 12, 14, 15 + + 1 + + + + SupportByVersion Office 12, 14, 15 + + 2 + + + + SupportByVersion Office 12, 14, 15 + + 3 + + + + SupportByVersion Office 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865270.aspx + + + + SupportByVersion Office 12, 14, 15 + + -2 + + + + SupportByVersion Office 12, 14, 15 + + 0 + + + + SupportByVersion Office 12, 14, 15 + + 1 + + + + SupportByVersion Office 12, 14, 15 + + 2 + + + + SupportByVersion Office 12, 14, 15 + + 3 + + + + SupportByVersion Office 12, 14, 15 + + 4 + + + + SupportByVersion Office 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863835.aspx + + + + SupportByVersion Office 12, 14, 15 + + 0 + + + + SupportByVersion Office 12, 14, 15 + + 1 + + + + SupportByVersion Office 12, 14, 15 + + 2 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/jj228570.aspx + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 4 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865284.aspx + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 4 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864937.aspx + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + -2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865201.aspx + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + -2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 4 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 5 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 6 + + + + DispatchInterface EffectParameters + SupportByVersion Office, 14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863304.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersionAttribute Office, 14,15 + + + + + SupportByVersionAttribute Office, 14,15 + + + + + SupportByVersion Office 14, 15 + Get + + object Index + + + + SupportByVersion Office 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860578.aspx + + + + + DispatchInterface EncryptionProvider + SupportByVersion Office, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863389.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864896.aspx + + NetOffice.OfficeApi.Enums.EncryptionProviderDetail encprovdet + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864027.aspx + + object ParentWindow + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864627.aspx + + object ParentWindow + object EncryptionData + UIntPtr PermissionsMask + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864902.aspx + + Int32 SessionHandle + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864652.aspx + + Int32 SessionHandle + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862766.aspx + + Int32 SessionHandle + object EncryptionData + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861839.aspx + + Int32 SessionHandle + string StreamName + object UnencryptedStream + object EncryptedStream + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864940.aspx + + Int32 SessionHandle + string StreamName + object EncryptedStream + object UnencryptedStream + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863378.aspx + + Int32 SessionHandle + object ParentWindow + bool ReadOnly + bool Remove + + + + DispatchInterface IMsoHiLoLines + SupportByVersion Office, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 14, 15 + Get + + + + + DispatchInterface MetaProperty + SupportByVersion Office, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861404.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865233.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861427.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864616.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864639.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861401.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863489.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862165.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862549.aspx + Unknown COM Proxy + + + + + DispatchInterface MsoDebugOptions_UTRunResult + SupportByVersion Office, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + DispatchInterface DocumentLibraryVersion + SupportByVersion Office, 11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863724.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861372.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863692.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860729.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861205.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861164.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860896.aspx + Unknown COM Proxy + + + + + SupportByVersion Office 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860286.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864654.aspx + + + + + DispatchInterface SearchScope + SupportByVersion Office, 10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862795.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862050.aspx + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863313.aspx + + + + + DispatchInterface ScopeFolders + SupportByVersion Office, 10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860833.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersionAttribute Office, 10,11,12,14,15 + + + + + SupportByVersionAttribute Office, 10,11,12,14,15 + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + + Int32 Index + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864965.aspx + + + + + DispatchInterface FileDialogSelectedItems + SupportByVersion Office, 10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863539.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersionAttribute Office, 10,11,12,14,15 + + + + + SupportByVersionAttribute Office, 10,11,12,14,15 + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863151.aspx + Unknown COM Proxy + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864570.aspx + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + Int32 Index + + + + DispatchInterface PropertyTest + SupportByVersion Office, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + DispatchInterface ThreeDFormat + SupportByVersion Office, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Single Increment + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Single Increment + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + NetOffice.OfficeApi.Enums.MsoPresetThreeDFormat PresetThreeDFormat + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + NetOffice.OfficeApi.Enums.MsoPresetExtrusionDirection PresetExtrusionDirection + + + + SupportByVersion Office 12, 14, 15 + + + NetOffice.OfficeApi.Enums.MsoPresetCamera PresetCamera + + + + SupportByVersion Office 12, 14, 15 + + + Single Increment + + + + SupportByVersion Office 12, 14, 15 + + + Single Increment + + + + SupportByVersion Office 12, 14, 15 + + + Single Increment + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + DispatchInterface Scripts + SupportByVersion Office, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + optional object Anchor = null (Nothing in visual basic) + optional NetOffice.OfficeApi.Enums.MsoScriptLocation Location = 2 + optional NetOffice.OfficeApi.Enums.MsoScriptLanguage Language = 2 + optional string Id = + optional string Extended = + optional string ScriptText = + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + optional object Anchor = null (Nothing in visual basic) + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + optional object Anchor = null (Nothing in visual basic) + optional NetOffice.OfficeApi.Enums.MsoScriptLocation Location = 2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + optional object Anchor = null (Nothing in visual basic) + optional NetOffice.OfficeApi.Enums.MsoScriptLocation Location = 2 + optional NetOffice.OfficeApi.Enums.MsoScriptLanguage Language = 2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + optional object Anchor = null (Nothing in visual basic) + optional NetOffice.OfficeApi.Enums.MsoScriptLocation Location = 2 + optional NetOffice.OfficeApi.Enums.MsoScriptLanguage Language = 2 + optional string Id = + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + optional object Anchor = null (Nothing in visual basic) + optional NetOffice.OfficeApi.Enums.MsoScriptLocation Location = 2 + optional NetOffice.OfficeApi.Enums.MsoScriptLanguage Language = 2 + optional string Id = + optional string Extended = + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + + + + SupportByVersionAttribute Office, 9,10,11,12,14,15 + + + + + SupportByVersionAttribute Office, 9,10,11,12,14,15 + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + object Index + + + + _CommandBarComboBox + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + Hidden stub .ctor + + + + registered ProgID + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_accName + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_accValue + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_accDescription + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_accRole + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_accState + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_accHelp + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_accKeyboardShortcut + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_accDefaultAction + + optional object varChild + + + + DispatchInterface _CommandBarComboBox + SupportByVersion Office, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_accChild + Unknown COM Proxy + + object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + string pszHelpFile + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_accHelpTopic + + string pszHelpFile + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + string pszHelpFile + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_accHelpTopic + + string pszHelpFile + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864610.aspx + + Int32 Index + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + Int32 Index + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864610.aspx + Alias for get_List + + Int32 Index + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Int32 flagsSelect + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Int32 flagsSelect + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Int32 pxLeft + Int32 pyTop + Int32 pcxWidth + Int32 pcyHeight + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Int32 pxLeft + Int32 pyTop + Int32 pcxWidth + Int32 pcyHeight + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Int32 navDir + optional object varStart + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Int32 navDir + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Int32 xLeft + Int32 yTop + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862141.aspx + + string Text + optional object Index + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862141.aspx + + string Text + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865479.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862859.aspx + + Int32 Index + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862391.aspx + Unknown COM Proxy + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864161.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862439.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860247.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861189.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861774.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861121.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860245.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863116.aspx + + + + + SupportByVersion Office 14, 15 + Get + + + + + Interface IMsoTrendline + SupportByVersion Office, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 14, 15 + Get + + + + + SupportByVersion Office 14, 15 + Get/Set + + + + + SupportByVersion Office 14, 15 + Get/Set + + + + + Interface ChartColorFormat + SupportByVersion Office, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 14, 15 + Get + + + + + Interface DocumentProperties + SupportByVersion Office, 9,10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863102.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862806.aspx + + string Name + bool LinkToContent + optional object Type + optional object Value + optional object LinkSource + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862806.aspx + + string Name + bool LinkToContent + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862806.aspx + + string Name + bool LinkToContent + optional object Type + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862806.aspx + + string Name + bool LinkToContent + optional object Type + optional object Value + + + + SupportByVersionAttribute Office, 9,10,11,12,14,15 + + + + + SupportByVersionAttribute Office, 9,10,11,12,14,15 + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864976.aspx + Unknown COM Proxy + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + object Index + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863076.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864029.aspx + Unknown COM Proxy + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861448.aspx + + + + + Interface DocumentProperty + SupportByVersion Office, 9,10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864951.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860911.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861535.aspx + Unknown COM Proxy + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863966.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861055.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863525.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860252.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861227.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862729.aspx + Unknown COM Proxy + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865263.aspx + + + + + SupportByVersion Office 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861482.aspx + + + + SupportByVersion Office 12, 14, 15 + + 0 + + + + SupportByVersion Office 12, 14, 15 + + 1 + + + + SupportByVersion Office 12, 14, 15 + + 2 + + + + SupportByVersion Office 12, 14, 15 + + 3 + + + + SupportByVersion Office 12, 14, 15 + + 4 + + + + SupportByVersion Office 12, 14, 15 + + + + + SupportByVersion Office 12, 14, 15 + + -4105 + + + + SupportByVersion Office 12, 14, 15 + + -4114 + + + + SupportByVersion Office 12, 14, 15 + + + + + SupportByVersion Office 12, 14, 15 + + -4105 + + + + SupportByVersion Office 12, 14, 15 + + -4170 + + + + SupportByVersion Office 12, 14, 15 + + -4128 + + + + SupportByVersion Office 12, 14, 15 + + -4171 + + + + SupportByVersion Office 12, 14, 15 + + -4166 + + + + SupportByVersion Office 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860551.aspx + + + + SupportByVersion Office 12, 14, 15 + + -2 + + + + SupportByVersion Office 12, 14, 15 + + -3 + + + + SupportByVersion Office 12, 14, 15 + + -4 + + + + SupportByVersion Office 12, 14, 15 + + -5 + + + + SupportByVersion Office 12, 14, 15 + + -6 + + + + SupportByVersion Office 12, 14, 15 + + -7 + + + + SupportByVersion Office 12, 14, 15 + + -8 + + + + SupportByVersion Office 12, 14, 15 + + -9 + + + + SupportByVersion Office 12, 14, 15 + + -10 + + + + SupportByVersion Office 12, 14, 15 + + -4114 + + + + SupportByVersion Office 12, 14, 15 + + -4142 + + + + SupportByVersion Office 12, 14, 15 + + + + + SupportByVersion Office 12, 14, 15 + + -5002 + + + + SupportByVersion Office 12, 14, 15 + + -5003 + + + + SupportByVersion Office 12, 14, 15 + + -5004 + + + + SupportByVersion Office 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863161.aspx + + + + SupportByVersion Office 12, 14, 15 + + -2 + + + + SupportByVersion Office 12, 14, 15 + + 1 + + + + SupportByVersion Office 12, 14, 15 + + 2 + + + + SupportByVersion Office 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862492.aspx + + + + SupportByVersion Office 12, 14, 15 + + -2 + + + + SupportByVersion Office 12, 14, 15 + + 0 + + + + SupportByVersion Office 12, 14, 15 + + 1 + + + + SupportByVersion Office 12, 14, 15 + + 2 + + + + SupportByVersion Office 12, 14, 15 + + 3 + + + + SupportByVersion Office 12, 14, 15 + + 4 + + + + SupportByVersion Office 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864115.aspx + + + + SupportByVersion Office 12, 14, 15 + + 0 + + + + SupportByVersion Office 12, 14, 15 + + 1 + + + + SupportByVersion Office 12, 14, 15 + + 2 + + + + SupportByVersion Office 12, 14, 15 + + 3 + + + + SupportByVersion Office 12, 14, 15 + + 4 + + + + SupportByVersion Office 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860750.aspx + + + + SupportByVersion Office 11, 12, 14, 15 + + 0 + + + + SupportByVersion Office 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862396.aspx + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 4 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860529.aspx + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 4 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 5 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 6 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 7 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 8 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 9 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863040.aspx + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + CoClass MsoEnvelope + SupportByVersion Office, 10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862112.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of MsoEnvelope + + + + + creates a new instance of MsoEnvelope + + registered ProgID + + + + returns all running Office.MsoEnvelope objects from the running object table(ROT) + + an Office.MsoEnvelope array + + + + returns a running Office.MsoEnvelope object from the running object table(ROT). the method takes the first element from the table + + an Office.MsoEnvelope object or null + + + + returns a running Office.MsoEnvelope object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Office.MsoEnvelope object or null + + + + creates active sink helper + + + + + SupportByVersion Office, 10,11,12,14,15 + + + + + SupportByVersion Office 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861098.aspx + + + + SupportByVersion Office, 10,11,12,14,15 + + + + + SupportByVersion Office 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860254.aspx + + + + DispatchInterface PickerDialog + SupportByVersion Office, 14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860858.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861181.aspx + + + + + SupportByVersion Office 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861095.aspx + + optional bool IsMultiSelect = true + optional NetOffice.OfficeApi.PickerResults ExistingResults = 0 + + + + SupportByVersion Office 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861095.aspx + + + + + SupportByVersion Office 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861095.aspx + + optional bool IsMultiSelect = true + + + + SupportByVersion Office 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861733.aspx + + string TokenText + Int32 duplicateDlgMode + + + + SupportByVersion Office 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862371.aspx + + + + + SupportByVersion Office 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862526.aspx + + + + + SupportByVersion Office 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860248.aspx + + + + + DispatchInterface PickerResult + SupportByVersion Office, 14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861756.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863784.aspx + + + + + SupportByVersion Office 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861059.aspx + + + + + SupportByVersion Office 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865231.aspx + + + + + SupportByVersion Office 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863831.aspx + + + + + SupportByVersion Office 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865213.aspx + + + + + SupportByVersion Office 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863538.aspx + + + + + SupportByVersion Office 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862053.aspx + + + + + SupportByVersion Office 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864553.aspx + + + + + DispatchInterface SmartArtColor + SupportByVersion Office, 14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861870.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863776.aspx + Unknown COM Proxy + + + + + SupportByVersion Office 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863086.aspx + + + + + SupportByVersion Office 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862469.aspx + + + + + SupportByVersion Office 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864152.aspx + + + + + SupportByVersion Office 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861402.aspx + + + + + DispatchInterface SmartArtNode + SupportByVersion Office, 14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861178.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865366.aspx + + optional NetOffice.OfficeApi.Enums.MsoSmartArtNodePosition Position = 1 + optional NetOffice.OfficeApi.Enums.MsoSmartArtNodeType Type = 1 + + + + SupportByVersion Office 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865366.aspx + + + + + SupportByVersion Office 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865366.aspx + + optional NetOffice.OfficeApi.Enums.MsoSmartArtNodePosition Position = 1 + + + + SupportByVersion Office 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863109.aspx + + + + + SupportByVersion Office 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862804.aspx + + + + + SupportByVersion Office 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860258.aspx + + + + + SupportByVersion Office 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864694.aspx + + + + + SupportByVersion Office 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863061.aspx + + + + + SupportByVersion Office 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863035.aspx + + + + + SupportByVersion Office 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860343.aspx + + + + + SupportByVersion Office 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863308.aspx + Unknown COM Proxy + + + + + SupportByVersion Office 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860568.aspx + + + + + SupportByVersion Office 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864604.aspx + + + + + SupportByVersion Office 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861779.aspx + + + + + SupportByVersion Office 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862082.aspx + + + + + SupportByVersion Office 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860275.aspx + + + + + SupportByVersion Office 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865275.aspx + + + + + SupportByVersion Office 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862047.aspx + + + + + SupportByVersion Office 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861873.aspx + + + + + DispatchInterface IMsoCharacters + SupportByVersion Office, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + + + string bstr + + + + SupportByVersion Office 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 14, 15 + Get + + + + + DispatchInterface IMsoDisplayUnitLabel + SupportByVersion Office, 12,14,15 + + + + + DispatchInterface IMsoChartTitle + SupportByVersion Office, 12,14,15 + + + + + IMsoChartTitle + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + Hidden stub .ctor + + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + Get + + optional object Start + optional object Length + + + + SupportByVersion Office 12, 14, 15 + Alias for get_Characters + + optional object Start + optional object Length + + + + SupportByVersion Office 12, 14, 15 + Get + + optional object Start + + + + SupportByVersion Office 12, 14, 15 + Alias for get_Characters + + optional object Start + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 14, 15 + Get + + + + + SupportByVersion Office 14, 15 + Get + + + + + SupportByVersion Office 14, 15 + Get/Set + + + + + SupportByVersion Office 14, 15 + Get/Set + + + + + SupportByVersion Office 14, 15 + Get/Set + + + + + SupportByVersion Office 14, 15 + Get/Set + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + DispatchInterface IMsoPlotArea + SupportByVersion Office, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 14, 15 + Get + + + + + DispatchInterface IAssistance + SupportByVersion Office, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864589.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860570.aspx + + optional string HelpId = + optional string Scope = + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860570.aspx + + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860570.aspx + + optional string HelpId = + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862805.aspx + + string Query + optional string Scope = + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862805.aspx + + string Query + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861230.aspx + + string HelpId + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865260.aspx + + string HelpId + + + + DispatchInterface OfficeTheme + SupportByVersion Office, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860320.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863403.aspx + Unknown COM Proxy + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860546.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862826.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865234.aspx + + + + + DispatchInterface _CustomXMLParts + SupportByVersion Office, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865361.aspx + + optional string XML = + optional object SchemaCollection + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865361.aspx + + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865361.aspx + + optional string XML = + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865246.aspx + + string Id + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861183.aspx + + string NamespaceURI + + + + SupportByVersionAttribute Office, 12,14,15 + + + + + SupportByVersionAttribute Office, 12,14,15 + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862384.aspx + Unknown COM Proxy + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865208.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + + object Index + + + + DispatchInterface ICustomXMLPartEvents + SupportByVersion Office, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + + + NetOffice.OfficeApi.CustomXMLNode NewNode + bool InUndoRedo + + + + SupportByVersion Office 12, 14, 15 + + + NetOffice.OfficeApi.CustomXMLNode OldNode + NetOffice.OfficeApi.CustomXMLNode OldParentNode + NetOffice.OfficeApi.CustomXMLNode OldNextSibling + bool InUndoRedo + + + + SupportByVersion Office 12, 14, 15 + + + NetOffice.OfficeApi.CustomXMLNode OldNode + NetOffice.OfficeApi.CustomXMLNode NewNode + bool InUndoRedo + + + + DispatchInterface CustomXMLSchema + SupportByVersion Office, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863106.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864090.aspx + + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863137.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864019.aspx + Unknown COM Proxy + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860497.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861712.aspx + + + + + DispatchInterface ServerPolicy + SupportByVersion Office, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864653.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersionAttribute Office, 12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersionAttribute Office, 12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersion Office 12, 14, 15 + Get + + object Index + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863832.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863467.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864618.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862734.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863781.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863445.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864621.aspx + Unknown COM Proxy + + + + + DispatchInterface SharedWorkspaceFile + SupportByVersion Office, 11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861418.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863519.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864629.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864979.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864174.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864890.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864556.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862508.aspx + Unknown COM Proxy + + + + + DispatchInterface ODSOColumn + SupportByVersion Office, 10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865512.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864961.aspx + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863761.aspx + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860618.aspx + Unknown COM Proxy + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862836.aspx + + + + + DispatchInterface DiagramNodeChildren + SupportByVersion Office, 10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + optional object Index = -1 + optional NetOffice.OfficeApi.Enums.MsoDiagramNodeType NodeType = 1 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + optional object Index = -1 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + + + + SupportByVersionAttribute Office, 10,11,12,14,15 + + + + + SupportByVersionAttribute Office, 10,11,12,14,15 + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + object Index + + + + DispatchInterface ICommandBarComboBoxEvents + SupportByVersion Office, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + NetOffice.OfficeApi.CommandBarComboBox Ctrl + + + + DispatchInterface PropertyTests + SupportByVersion Office, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + string Name + NetOffice.OfficeApi.Enums.MsoCondition Condition + optional object Value + optional object SecondValue + optional NetOffice.OfficeApi.Enums.MsoConnector Connector = 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + string Name + NetOffice.OfficeApi.Enums.MsoCondition Condition + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + string Name + NetOffice.OfficeApi.Enums.MsoCondition Condition + optional object Value + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + string Name + NetOffice.OfficeApi.Enums.MsoCondition Condition + optional object Value + optional object SecondValue + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Int32 Index + + + + SupportByVersionAttribute Office, 9,10,11,12,14,15 + + + + + SupportByVersionAttribute Office, 9,10,11,12,14,15 + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + Int32 Index + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + DispatchInterface FreeformBuilder + SupportByVersion Office, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + NetOffice.OfficeApi.Enums.MsoSegmentType SegmentType + NetOffice.OfficeApi.Enums.MsoEditingType EditingType + Single X1 + Single Y1 + optional Single X2 = 0 + optional Single Y2 = 0 + optional Single X3 = 0 + optional Single Y3 = 0 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + NetOffice.OfficeApi.Enums.MsoSegmentType SegmentType + NetOffice.OfficeApi.Enums.MsoEditingType EditingType + Single X1 + Single Y1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + NetOffice.OfficeApi.Enums.MsoSegmentType SegmentType + NetOffice.OfficeApi.Enums.MsoEditingType EditingType + Single X1 + Single Y1 + optional Single X2 = 0 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + NetOffice.OfficeApi.Enums.MsoSegmentType SegmentType + NetOffice.OfficeApi.Enums.MsoEditingType EditingType + Single X1 + Single Y1 + optional Single X2 = 0 + optional Single Y2 = 0 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + NetOffice.OfficeApi.Enums.MsoSegmentType SegmentType + NetOffice.OfficeApi.Enums.MsoEditingType EditingType + Single X1 + Single Y1 + optional Single X2 = 0 + optional Single Y2 = 0 + optional Single X3 = 0 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + DispatchInterface ColorFormat + SupportByVersion Office, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 14, 15 + Get/Set + + + + + DispatchInterface Adjustments + SupportByVersion Office, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersionAttribute Office, 9,10,11,12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersionAttribute Office, 9,10,11,12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + Int32 Index + + + + Interface CategoryCollection + SupportByVersion Office, 15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersionAttribute Office, 15 + This is a custom enumerator from NetOffice + + + + + SupportByVersionAttribute Office, 15 + This is a custom enumerator from NetOffice + + + + + SupportByVersion Office 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 15 + Get + + + + + SupportByVersion Office 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 15 + Get + + + + + SupportByVersion Office 15 + Get + + object Index + + + + Interface FullSeriesCollection + SupportByVersion Office, 15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersionAttribute Office, 15 + + + + + SupportByVersionAttribute Office, 15 + + + + + SupportByVersion Office 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 15 + Get + + + + + SupportByVersion Office 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 15 + Get + + + + + SupportByVersion Office 15 + Get + + object Index + + + + Trendlines + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + Hidden stub .ctor + + + + registered ProgID + + + + Interface Trendlines + SupportByVersion Office, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + + + optional NetOffice.OfficeApi.Enums.XlTrendlineType Type = -4132 + optional object Order + optional object Period + optional object Forward + optional object Backward + optional object Intercept + optional object DisplayEquation + optional object DisplayRSquared + optional object Name + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + + + optional NetOffice.OfficeApi.Enums.XlTrendlineType Type = -4132 + + + + SupportByVersion Office 12, 14, 15 + + + optional NetOffice.OfficeApi.Enums.XlTrendlineType Type = -4132 + optional object Order + + + + SupportByVersion Office 12, 14, 15 + + + optional NetOffice.OfficeApi.Enums.XlTrendlineType Type = -4132 + optional object Order + optional object Period + + + + SupportByVersion Office 12, 14, 15 + + + optional NetOffice.OfficeApi.Enums.XlTrendlineType Type = -4132 + optional object Order + optional object Period + optional object Forward + + + + SupportByVersion Office 12, 14, 15 + + + optional NetOffice.OfficeApi.Enums.XlTrendlineType Type = -4132 + optional object Order + optional object Period + optional object Forward + optional object Backward + + + + SupportByVersion Office 12, 14, 15 + + + optional NetOffice.OfficeApi.Enums.XlTrendlineType Type = -4132 + optional object Order + optional object Period + optional object Forward + optional object Backward + optional object Intercept + + + + SupportByVersion Office 12, 14, 15 + + + optional NetOffice.OfficeApi.Enums.XlTrendlineType Type = -4132 + optional object Order + optional object Period + optional object Forward + optional object Backward + optional object Intercept + optional object DisplayEquation + + + + SupportByVersion Office 12, 14, 15 + + + optional NetOffice.OfficeApi.Enums.XlTrendlineType Type = -4132 + optional object Order + optional object Period + optional object Forward + optional object Backward + optional object Intercept + optional object DisplayEquation + optional object DisplayRSquared + + + + SupportByVersionAttribute Office, 12,14,15 + + + + + SupportByVersionAttribute Office, 12,14,15 + + + + + SupportByVersion Office 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 14, 15 + Get + + + + + SupportByVersion Office 14, 15 + Get + + optional object Index + + + + SupportByVersion Office 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/jj228832.aspx + + + + SupportByVersion Office 15 + + -2 + + + + SupportByVersion Office 15 + + 1 + + + + SupportByVersion Office 15 + + 2 + + + + SupportByVersion Office 15 + + 3 + + + + SupportByVersion Office 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862240.aspx + + + + SupportByVersion Office 12, 14, 15 + + 0 + + + + SupportByVersion Office 12, 14, 15 + + 1 + + + + SupportByVersion Office 12, 14, 15 + + 2 + + + + SupportByVersion Office 12, 14, 15 + + + + + SupportByVersion Office 12, 14, 15 + + 1 + + + + SupportByVersion Office 12, 14, 15 + + 2 + + + + SupportByVersion Office 12, 14, 15 + + + + + SupportByVersion Office 12, 14, 15 + + 2 + + + + SupportByVersion Office 12, 14, 15 + + 1 + + + + SupportByVersion Office 12, 14, 15 + + + + + SupportByVersion Office 12, 14, 15 + + -4107 + + + + SupportByVersion Office 12, 14, 15 + + 2 + + + + SupportByVersion Office 12, 14, 15 + + -4131 + + + + SupportByVersion Office 12, 14, 15 + + -4152 + + + + SupportByVersion Office 12, 14, 15 + + -4160 + + + + SupportByVersion Office 12, 14, 15 + + -4161 + + + + SupportByVersion Office 12, 14, 15 + + + + + SupportByVersion Office 12, 14, 15 + + 1 + + + + SupportByVersion Office 12, 14, 15 + + 2 + + + + SupportByVersion Office 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863867.aspx + + + + SupportByVersion Office 12, 14, 15 + + 2 + + + + SupportByVersion Office 12, 14, 15 + + 1 + + + + SupportByVersion Office 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862513.aspx + + + + SupportByVersion Office 12, 14, 15 + + -2 + + + + SupportByVersion Office 12, 14, 15 + + 1 + + + + SupportByVersion Office 12, 14, 15 + + 2 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863826.aspx + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 4 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 5 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/jj229152.aspx + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 4 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 5 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 6 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 7 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 8 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 9 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 10 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 11 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 12 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 13 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 14 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862778.aspx + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + -2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 4 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 5 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 6 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864863.aspx + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 4 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 5 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863713.aspx + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + -2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 4 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 5 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 6 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 7 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 8 + + + + SupportByVersion Office 12, 14, 15 + + 9 + + + + SupportByVersion Office 12, 14, 15 + + 10 + + + + SupportByVersion Office 12, 14, 15 + + 11 + + + + SupportByVersion Office 12, 14, 15 + + 12 + + + + Task pane UserControl instances can implement these interface in a NetOffice Tools Addin as a special service + + + + + After startup to serve the application instance and custom arguments(if set) + + host application instance + custom task pane definition + custom arguments + + + + While Excel Application shutdown. The method is not called in case of unexpected termination (may user kill the instance in task manager) + + + + + Called after any position changes but not for size changes. Use the UserControl.Resize event instead for size changes + + the current alignment for the instance + + + + Called after any visibility changes because the UserControl.VisibleChanged event doesnt work as expected in a task pane scenario + + the current visibility for the instance + + + + DispatchInterface ChartFillFormat + SupportByVersion Office, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + + + Int32 Style + Int32 Variant + Single Degree + + + + SupportByVersion Office 12, 14, 15 + + + Int32 Style + Int32 Variant + + + + SupportByVersion Office 12, 14, 15 + + + Int32 PresetTexture + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + + + Int32 Pattern + + + + SupportByVersion Office 12, 14, 15 + + + object PictureFile + object PictureFormat + object PictureStackUnit + object PicturePlacement + + + + SupportByVersion Office 12, 14, 15 + + + string TextureFile + + + + SupportByVersion Office 12, 14, 15 + + + Int32 Style + Int32 Variant + Int32 PresetGradientType + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 14, 15 + Get + + + + + SupportByVersion Office 14, 15 + Get + Unknown COM Proxy + + + + + DispatchInterface IMsoUpBars + SupportByVersion Office, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 14, 15 + Get + + + + + DispatchInterface ICTPFactory + SupportByVersion Office, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864938.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860563.aspx + + string CTPAxID + string CTPTitle + optional object CTPParentWindow + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860563.aspx + + string CTPAxID + string CTPTitle + + + + DispatchInterface ThemeFontScheme + SupportByVersion Office, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861788.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863667.aspx + + string FileName + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861510.aspx + + string FileName + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860828.aspx + Unknown COM Proxy + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865197.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865219.aspx + + + + + DispatchInterface PolicyItem + SupportByVersion Office, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863739.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864034.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862484.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861228.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861729.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860867.aspx + Unknown COM Proxy + + + + + DispatchInterface MsoDebugOptions_UTManager + SupportByVersion Office, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + DispatchInterface SharedWorkspaceLink + SupportByVersion Office, 11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865254.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862046.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863052.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863119.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860499.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861886.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863662.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861532.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861094.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860294.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863516.aspx + Unknown COM Proxy + + + + + DispatchInterface SharedWorkspaceTasks + SupportByVersion Office, 11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864958.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865453.aspx + + string Title + optional object Status + optional object Priority + optional object Assignee + optional object Description + optional object DueDate + + + + SupportByVersion Office 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865453.aspx + + string Title + + + + SupportByVersion Office 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865453.aspx + + string Title + optional object Status + + + + SupportByVersion Office 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865453.aspx + + string Title + optional object Status + optional object Priority + + + + SupportByVersion Office 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865453.aspx + + string Title + optional object Status + optional object Priority + optional object Assignee + + + + SupportByVersion Office 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865453.aspx + + string Title + optional object Status + optional object Priority + optional object Assignee + optional object Description + + + + SupportByVersionAttribute Office, 11,12,14,15 + + + + + SupportByVersionAttribute Office, 11,12,14,15 + + + + + SupportByVersion Office 11, 12, 14, 15 + Get + + Int32 Index + + + + SupportByVersion Office 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862401.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862065.aspx + Unknown COM Proxy + + + + + SupportByVersion Office 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861502.aspx + + + + + DispatchInterface SharedWorkspaceMembers + SupportByVersion Office, 11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861050.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860533.aspx + + string Email + string DomainName + string DisplayName + optional object Role + + + + SupportByVersion Office 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860533.aspx + + string Email + string DomainName + string DisplayName + + + + SupportByVersionAttribute Office, 11,12,14,15 + + + + + SupportByVersionAttribute Office, 11,12,14,15 + + + + + SupportByVersion Office 11, 12, 14, 15 + Get + + Int32 Index + + + + SupportByVersion Office 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861505.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863728.aspx + Unknown COM Proxy + + + + + SupportByVersion Office 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863376.aspx + + + + + DispatchInterface ILicWizExternal + SupportByVersion Office, 10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + object punkHtmlDoc + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + DateTime date + optional string pFormat = + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + DateTime date + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + optional object pvarId + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + Int32 BPC + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + string bstrReceipt + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + string bstrUrl + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + string bstrText + string bstrButtons + string bstrIcon + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + string bstrKey + Int32 fMORW + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + string bstrMessage + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + string bstrProductCode + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + Int32 dx + Int32 dy + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + Int32 lMode + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + object pdispSelect + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + + + + + DispatchInterface ScopeFolder + SupportByVersion Office, 10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865567.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865227.aspx + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864935.aspx + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862491.aspx + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865008.aspx + + + + + DispatchInterface FileDialog + SupportByVersion Office, 10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862446.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865217.aspx + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862099.aspx + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864165.aspx + Unknown COM Proxy + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860295.aspx + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860516.aspx + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863472.aspx + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863394.aspx + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863824.aspx + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860561.aspx + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863092.aspx + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863790.aspx + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864572.aspx + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864996.aspx + + + + + DispatchInterface BalloonLabels + SupportByVersion Office, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersionAttribute Office, 9,10,11,12,14,15 + + + + + SupportByVersionAttribute Office, 9,10,11,12,14,15 + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + Int32 Index + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + DispatchInterface ConnectorFormat + SupportByVersion Office, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + NetOffice.OfficeApi.Shape ConnectedShape + Int32 ConnectionSite + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + NetOffice.OfficeApi.Shape ConnectedShape + Int32 ConnectionSite + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/jj227927.aspx + + + + SupportByVersion Office 15 + + 1 + + + + SupportByVersion Office 15 + + 2 + + + + SupportByVersion Office 15 + + 4 + + + + SupportByVersion Office 12, 14, 15 + + + + + SupportByVersion Office 12, 14, 15 + + -4168 + + + + SupportByVersion Office 12, 14, 15 + + 1 + + + + SupportByVersion Office 12, 14, 15 + + + + + SupportByVersion Office 12, 14, 15 + + -4114 + + + + SupportByVersion Office 12, 14, 15 + + 1 + + + + SupportByVersion Office 12, 14, 15 + + 2 + + + + SupportByVersion Office 12, 14, 15 + + -4155 + + + + SupportByVersion Office 12, 14, 15 + + 4 + + + + SupportByVersion Office 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861524.aspx + + + + SupportByVersion Office 12, 14, 15 + + -2 + + + + SupportByVersion Office 12, 14, 15 + + 0 + + + + SupportByVersion Office 12, 14, 15 + + 1 + + + + SupportByVersion Office 12, 14, 15 + + 2 + + + + SupportByVersion Office 12, 14, 15 + + 3 + + + + SupportByVersion Office 12, 14, 15 + + 4 + + + + SupportByVersion Office 12, 14, 15 + + 5 + + + + SupportByVersion Office 12, 14, 15 + + 6 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + -2 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 4 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 5 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 6 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/jj228659.aspx + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862064.aspx + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860811.aspx + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862100.aspx + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + -1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862057.aspx + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861529.aspx + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + -2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 4 + + + + SupportByVersion Office 12, 14, 15 + + 5 + + + + SupportByVersion Office 12, 14, 15 + + 6 + + + + SupportByVersion Office 12, 14, 15 + + 7 + + + + SupportByVersion Office 12, 14, 15 + + 8 + + + + SupportByVersion Office 12, 14, 15 + + 9 + + + + SupportByVersion Office 12, 14, 15 + + 10 + + + + SupportByVersion Office 12, 14, 15 + + 11 + + + + SupportByVersion Office 12, 14, 15 + + 12 + + + + SupportByVersion Office 12, 14, 15 + + 13 + + + + SupportByVersion Office 12, 14, 15 + + 14 + + + + SupportByVersion Office 12, 14, 15 + + 15 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865529.aspx + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + -2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 4 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 5 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 6 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 7 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 8 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 9 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 10 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 11 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 12 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 13 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 14 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 15 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 16 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 17 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 18 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 19 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 20 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 21 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 22 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 23 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 24 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862846.aspx + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + -2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 4 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 5 + + + + CoClass CustomXMLParts + SupportByVersion Office, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863162.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of CustomXMLParts + + + + + creates a new instance of CustomXMLParts + + registered ProgID + + + + returns all running Office.CustomXMLParts objects from the running object table(ROT) + + an Office.CustomXMLParts array + + + + returns a running Office.CustomXMLParts object from the running object table(ROT). the method takes the first element from the table + + an Office.CustomXMLParts object or null + + + + returns a running Office.CustomXMLParts object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Office.CustomXMLParts object or null + + + + creates active sink helper + + + + + SupportByVersion Office, 12,14,15 + + + + + SupportByVersion Office 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864147.aspx + + + + SupportByVersion Office, 12,14,15 + + + + + SupportByVersion Office 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861735.aspx + + + + SupportByVersion Office, 12,14,15 + + + + + SupportByVersion Office 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864879.aspx + + + + DispatchInterface SmartArtQuickStyle + SupportByVersion Office, 14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864977.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864135.aspx + Unknown COM Proxy + + + + + SupportByVersion Office 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864914.aspx + + + + + SupportByVersion Office 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860242.aspx + + + + + SupportByVersion Office 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863282.aspx + + + + + SupportByVersion Office 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860330.aspx + + + + + DispatchInterface IMsoDataTable + SupportByVersion Office, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 14, 15 + Get + + + + + DispatchInterface IMsoAxis + SupportByVersion Office, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 14, 15 + Get + + + + + SupportByVersion Office 14, 15 + Get + Unknown COM Proxy + + + + + DispatchInterface WorkflowTasks + SupportByVersion Office, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861195.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersionAttribute Office, 12,14,15 + + + + + SupportByVersionAttribute Office, 12,14,15 + + + + + SupportByVersion Office 12, 14, 15 + Get + + Int32 Index + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860315.aspx + + + + + DispatchInterface SharedWorkspaceTask + SupportByVersion Office, 11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865531.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865262.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862097.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860234.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861531.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864957.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863054.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860514.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862835.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864667.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862213.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864980.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860842.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862819.aspx + Unknown COM Proxy + + + + + DispatchInterface FileDialogFilters + SupportByVersion Office, 10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863542.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862434.aspx + + optional object filter + + + + SupportByVersion Office 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862434.aspx + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860610.aspx + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865351.aspx + + string Description + string Extensions + optional object Position + + + + SupportByVersion Office 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865351.aspx + + string Description + string Extensions + + + + SupportByVersionAttribute Office, 10,11,12,14,15 + + + + + SupportByVersionAttribute Office, 10,11,12,14,15 + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865321.aspx + Unknown COM Proxy + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860290.aspx + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + Int32 Index + + + + DispatchInterface IFoundFiles + SupportByVersion Office, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersionAttribute Office, 9,10,11,12,14,15 + + + + + SupportByVersionAttribute Office, 9,10,11,12,14,15 + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + Int32 Index + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + Interface ChartPoint + SupportByVersion Office, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + + + optional NetOffice.OfficeApi.Enums.XlDataLabelsType Type = 2 + optional object IMsoLegendKey + optional object AutoText + optional object HasLeaderLines + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + + + optional NetOffice.OfficeApi.Enums.XlDataLabelsType Type = 2 + + + + SupportByVersion Office 12, 14, 15 + + + optional NetOffice.OfficeApi.Enums.XlDataLabelsType Type = 2 + optional object IMsoLegendKey + + + + SupportByVersion Office 12, 14, 15 + + + optional NetOffice.OfficeApi.Enums.XlDataLabelsType Type = 2 + optional object IMsoLegendKey + optional object AutoText + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + + + optional NetOffice.OfficeApi.Enums.XlDataLabelsType Type = 2 + optional object IMsoLegendKey + optional object AutoText + optional object HasLeaderLines + optional object ShowSeriesName + optional object ShowCategoryName + optional object ShowValue + optional object ShowPercentage + optional object ShowBubbleSize + optional object Separator + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + + + optional NetOffice.OfficeApi.Enums.XlDataLabelsType Type = 2 + + + + SupportByVersion Office 12, 14, 15 + + + optional NetOffice.OfficeApi.Enums.XlDataLabelsType Type = 2 + optional object IMsoLegendKey + + + + SupportByVersion Office 12, 14, 15 + + + optional NetOffice.OfficeApi.Enums.XlDataLabelsType Type = 2 + optional object IMsoLegendKey + optional object AutoText + + + + SupportByVersion Office 12, 14, 15 + + + optional NetOffice.OfficeApi.Enums.XlDataLabelsType Type = 2 + optional object IMsoLegendKey + optional object AutoText + optional object HasLeaderLines + + + + SupportByVersion Office 12, 14, 15 + + + optional NetOffice.OfficeApi.Enums.XlDataLabelsType Type = 2 + optional object IMsoLegendKey + optional object AutoText + optional object HasLeaderLines + optional object ShowSeriesName + + + + SupportByVersion Office 12, 14, 15 + + + optional NetOffice.OfficeApi.Enums.XlDataLabelsType Type = 2 + optional object IMsoLegendKey + optional object AutoText + optional object HasLeaderLines + optional object ShowSeriesName + optional object ShowCategoryName + + + + SupportByVersion Office 12, 14, 15 + + + optional NetOffice.OfficeApi.Enums.XlDataLabelsType Type = 2 + optional object IMsoLegendKey + optional object AutoText + optional object HasLeaderLines + optional object ShowSeriesName + optional object ShowCategoryName + optional object ShowValue + + + + SupportByVersion Office 12, 14, 15 + + + optional NetOffice.OfficeApi.Enums.XlDataLabelsType Type = 2 + optional object IMsoLegendKey + optional object AutoText + optional object HasLeaderLines + optional object ShowSeriesName + optional object ShowCategoryName + optional object ShowValue + optional object ShowPercentage + + + + SupportByVersion Office 12, 14, 15 + + + optional NetOffice.OfficeApi.Enums.XlDataLabelsType Type = 2 + optional object IMsoLegendKey + optional object AutoText + optional object HasLeaderLines + optional object ShowSeriesName + optional object ShowCategoryName + optional object ShowValue + optional object ShowPercentage + optional object ShowBubbleSize + + + + SupportByVersion Office 14, 15 + + + NetOffice.OfficeApi.Enums.XlPieSliceLocation loc + optional NetOffice.OfficeApi.Enums.XlPieSliceIndex Index = 2 + + + + SupportByVersion Office 14, 15 + + + NetOffice.OfficeApi.Enums.XlPieSliceLocation loc + + + + SupportByVersion Office 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 14, 15 + Get + + + + + SupportByVersion Office 14, 15 + Get/Set + + + + + SupportByVersion Office 14, 15 + Get + + + + + SupportByVersion Office 14, 15 + Get + + + + + SupportByVersion Office 14, 15 + Get + + + + + SupportByVersion Office 14, 15 + Get + + + + + SupportByVersion Office 14, 15 + Get + + + + + SupportByVersion Office 15 + + + + + SupportByVersion Office 15 + + -3 + + + + SupportByVersion Office 15 + + -2 + + + + SupportByVersion Office 15 + + -1 + + + + SupportByVersion Office 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860300.aspx + + + + SupportByVersion Office 14, 15 + + 1 + + + + SupportByVersion Office 14, 15 + + 2 + + + + SupportByVersion Office 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863687.aspx + + + + SupportByVersion Office 14, 15 + + 1 + + + + SupportByVersion Office 14, 15 + + 2 + + + + SupportByVersion Office 14, 15 + + 3 + + + + SupportByVersion Office 14, 15 + + 4 + + + + SupportByVersion Office 14, 15 + + 5 + + + + SupportByVersion Office 12, 14, 15 + + + + + SupportByVersion Office 12, 14, 15 + + -4127 + + + + SupportByVersion Office 12, 14, 15 + + -4134 + + + + SupportByVersion Office 12, 14, 15 + + 4 + + + + SupportByVersion Office 12, 14, 15 + + -4142 + + + + SupportByVersion Office 12, 14, 15 + + + + + SupportByVersion Office 12, 14, 15 + + -4132 + + + + SupportByVersion Office 12, 14, 15 + + -4133 + + + + SupportByVersion Office 12, 14, 15 + + + + + SupportByVersion Office 12, 14, 15 + + -4119 + + + + SupportByVersion Office 12, 14, 15 + + 5 + + + + SupportByVersion Office 12, 14, 15 + + -4142 + + + + SupportByVersion Office 12, 14, 15 + + 2 + + + + SupportByVersion Office 12, 14, 15 + + 4 + + + + SupportByVersion Office 12, 14, 15 + + + + + SupportByVersion Office 12, 14, 15 + + 51 + + + + SupportByVersion Office 12, 14, 15 + + 52 + + + + SupportByVersion Office 12, 14, 15 + + 53 + + + + SupportByVersion Office 12, 14, 15 + + 54 + + + + SupportByVersion Office 12, 14, 15 + + 55 + + + + SupportByVersion Office 12, 14, 15 + + 56 + + + + SupportByVersion Office 12, 14, 15 + + 57 + + + + SupportByVersion Office 12, 14, 15 + + 58 + + + + SupportByVersion Office 12, 14, 15 + + 59 + + + + SupportByVersion Office 12, 14, 15 + + 60 + + + + SupportByVersion Office 12, 14, 15 + + 61 + + + + SupportByVersion Office 12, 14, 15 + + 62 + + + + SupportByVersion Office 12, 14, 15 + + 63 + + + + SupportByVersion Office 12, 14, 15 + + 64 + + + + SupportByVersion Office 12, 14, 15 + + 65 + + + + SupportByVersion Office 12, 14, 15 + + 66 + + + + SupportByVersion Office 12, 14, 15 + + 67 + + + + SupportByVersion Office 12, 14, 15 + + 68 + + + + SupportByVersion Office 12, 14, 15 + + 69 + + + + SupportByVersion Office 12, 14, 15 + + 70 + + + + SupportByVersion Office 12, 14, 15 + + 71 + + + + SupportByVersion Office 12, 14, 15 + + 72 + + + + SupportByVersion Office 12, 14, 15 + + 73 + + + + SupportByVersion Office 12, 14, 15 + + 74 + + + + SupportByVersion Office 12, 14, 15 + + 75 + + + + SupportByVersion Office 12, 14, 15 + + 76 + + + + SupportByVersion Office 12, 14, 15 + + 77 + + + + SupportByVersion Office 12, 14, 15 + + 78 + + + + SupportByVersion Office 12, 14, 15 + + 79 + + + + SupportByVersion Office 12, 14, 15 + + 80 + + + + SupportByVersion Office 12, 14, 15 + + 81 + + + + SupportByVersion Office 12, 14, 15 + + 82 + + + + SupportByVersion Office 12, 14, 15 + + 83 + + + + SupportByVersion Office 12, 14, 15 + + 84 + + + + SupportByVersion Office 12, 14, 15 + + 85 + + + + SupportByVersion Office 12, 14, 15 + + 86 + + + + SupportByVersion Office 12, 14, 15 + + 15 + + + + SupportByVersion Office 12, 14, 15 + + 87 + + + + SupportByVersion Office 12, 14, 15 + + 88 + + + + SupportByVersion Office 12, 14, 15 + + 89 + + + + SupportByVersion Office 12, 14, 15 + + 90 + + + + SupportByVersion Office 12, 14, 15 + + 91 + + + + SupportByVersion Office 12, 14, 15 + + 92 + + + + SupportByVersion Office 12, 14, 15 + + 93 + + + + SupportByVersion Office 12, 14, 15 + + 94 + + + + SupportByVersion Office 12, 14, 15 + + 95 + + + + SupportByVersion Office 12, 14, 15 + + 96 + + + + SupportByVersion Office 12, 14, 15 + + 97 + + + + SupportByVersion Office 12, 14, 15 + + 98 + + + + SupportByVersion Office 12, 14, 15 + + 99 + + + + SupportByVersion Office 12, 14, 15 + + 100 + + + + SupportByVersion Office 12, 14, 15 + + 101 + + + + SupportByVersion Office 12, 14, 15 + + 102 + + + + SupportByVersion Office 12, 14, 15 + + 103 + + + + SupportByVersion Office 12, 14, 15 + + 104 + + + + SupportByVersion Office 12, 14, 15 + + 105 + + + + SupportByVersion Office 12, 14, 15 + + 106 + + + + SupportByVersion Office 12, 14, 15 + + 107 + + + + SupportByVersion Office 12, 14, 15 + + 108 + + + + SupportByVersion Office 12, 14, 15 + + 109 + + + + SupportByVersion Office 12, 14, 15 + + 110 + + + + SupportByVersion Office 12, 14, 15 + + 111 + + + + SupportByVersion Office 12, 14, 15 + + 112 + + + + SupportByVersion Office 12, 14, 15 + + -4100 + + + + SupportByVersion Office 12, 14, 15 + + 4 + + + + SupportByVersion Office 12, 14, 15 + + -4101 + + + + SupportByVersion Office 12, 14, 15 + + -4102 + + + + SupportByVersion Office 12, 14, 15 + + 5 + + + + SupportByVersion Office 12, 14, 15 + + -4169 + + + + SupportByVersion Office 12, 14, 15 + + -4098 + + + + SupportByVersion Office 12, 14, 15 + + 1 + + + + SupportByVersion Office 12, 14, 15 + + -4120 + + + + SupportByVersion Office 12, 14, 15 + + -4151 + + + + SupportByVersion Office 15 + + -4152 + + + + SupportByVersion Office 15 + + 113 + + + + SupportByVersion Office 15 + + 114 + + + + SupportByVersion Office 15 + + 115 + + + + SupportByVersion Office 15 + + 116 + + + + SupportByVersion Office 15 + + -2 + + + + SupportByVersion Office 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864145.aspx + + + + SupportByVersion Office 12, 14, 15 + + 0 + + + + SupportByVersion Office 12, 14, 15 + + 1 + + + + SupportByVersion Office 12, 14, 15 + + 2 + + + + SupportByVersion Office 12, 14, 15 + + 3 + + + + SupportByVersion Office 12, 14, 15 + + 4 + + + + SupportByVersion Office 12, 14, 15 + + 5 + + + + SupportByVersion Office 12, 14, 15 + + 6 + + + + SupportByVersion Office 12, 14, 15 + + 7 + + + + SupportByVersion Office 12, 14, 15 + + 8 + + + + SupportByVersion Office 12, 14, 15 + + 9 + + + + SupportByVersion Office 12, 14, 15 + + 10 + + + + SupportByVersion Office 12, 14, 15 + + 11 + + + + SupportByVersion Office 12, 14, 15 + + 12 + + + + SupportByVersion Office 12, 14, 15 + + 13 + + + + SupportByVersion Office 12, 14, 15 + + 14 + + + + SupportByVersion Office 12, 14, 15 + + 15 + + + + SupportByVersion Office 12, 14, 15 + + 16 + + + + SupportByVersion Office 12, 14, 15 + + 17 + + + + SupportByVersion Office 12, 14, 15 + + 18 + + + + SupportByVersion Office 12, 14, 15 + + 19 + + + + SupportByVersion Office 12, 14, 15 + + 20 + + + + SupportByVersion Office 12, 14, 15 + + 21 + + + + SupportByVersion Office 14, 15 + + 21 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864117.aspx + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 4 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/jj227975.aspx + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + -15 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + -14 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + -13 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + -12 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + -11 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + -10 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + -9 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + -8 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + -7 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + -6 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + -5 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + -4 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + -3 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + -2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + -1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/jj230085.aspx + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/jj230099.aspx + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 4 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 5 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 6 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 7 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865255.aspx + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + -2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 4 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 5 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862481.aspx + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + -2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 4 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 5 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 6 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 7 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 8 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 9 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 10 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 11 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 12 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 13 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 14 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 15 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 16 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 17 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 18 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 19 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 20 + + + + SupportByVersion Office 14, 15 + + 21 + + + + SupportByVersion Office 14, 15 + + 22 + + + + SupportByVersion Office 14, 15 + + 23 + + + + SupportByVersion Office 14, 15 + + 24 + + + + SupportByVersion Office 14, 15 + + 25 + + + + SupportByVersion Office 14, 15 + + 26 + + + + SupportByVersion Office 14, 15 + + 27 + + + + SupportByVersion Office 14, 15 + + 28 + + + + SupportByVersion Office 14, 15 + + 29 + + + + SupportByVersion Office 14, 15 + + 30 + + + + SupportByVersion Office 14, 15 + + 31 + + + + SupportByVersion Office 14, 15 + + 32 + + + + SupportByVersion Office 14, 15 + + 33 + + + + SupportByVersion Office 14, 15 + + 34 + + + + SupportByVersion Office 14, 15 + + 35 + + + + SupportByVersion Office 14, 15 + + 36 + + + + SupportByVersion Office 14, 15 + + 37 + + + + SupportByVersion Office 14, 15 + + 38 + + + + SupportByVersion Office 14, 15 + + 39 + + + + SupportByVersion Office 14, 15 + + 40 + + + + SupportByVersion Office 14, 15 + + 41 + + + + SupportByVersion Office 14, 15 + + 42 + + + + SupportByVersion Office 14, 15 + + 43 + + + + Set a target office product for registering + + + + + MS Excel in any version + + + + + MS Word in any version + + + + + MS Outlook in any version + + + + + MS PowerPoint in any version + + + + + MS Access in any version + + + + + MS Project in any version + + + + + MS Visio in any version + + + + + This attribute can be used from NetOffice.OfficeApi.Tools.COMAddin to specify multipe office products + + + + + The office products for addin registration + + + + + Creates an instance of the attribute + + The office products for addin registration + + + + Looks for the MultiRegisterAttribute. Throws an exception if not found + + the type you want looking for the attribute + MultiRegisterAttribute + + + + CoClass CustomXMLPart + SupportByVersion Office, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863497.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of CustomXMLPart + + + + + creates a new instance of CustomXMLPart + + registered ProgID + + + + returns all running Office.CustomXMLPart objects from the running object table(ROT) + + an Office.CustomXMLPart array + + + + returns a running Office.CustomXMLPart object from the running object table(ROT). the method takes the first element from the table + + an Office.CustomXMLPart object or null + + + + returns a running Office.CustomXMLPart object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Office.CustomXMLPart object or null + + + + creates active sink helper + + + + + SupportByVersion Office, 12,14,15 + + + + + SupportByVersion Office 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862780.aspx + + + + SupportByVersion Office, 12,14,15 + + + + + SupportByVersion Office 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861395.aspx + + + + SupportByVersion Office, 12,14,15 + + + + + SupportByVersion Office 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863732.aspx + + + + DispatchInterface IMsoHyperlinks + SupportByVersion Office, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + DispatchInterface IMsoAxisTitle + SupportByVersion Office, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + DispatchInterface GridLines + SupportByVersion Office, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 14, 15 + Get + + + + + DispatchInterface IMsoLeaderLines + SupportByVersion Office, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 14, 15 + Get + + + + + SupportByVersion Office 14, 15 + Get + Unknown COM Proxy + + + + + DispatchInterface IMsoWalls + SupportByVersion Office, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 14, 15 + Get + + + + + DispatchInterface GradientStops + SupportByVersion Office, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861159.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861233.aspx + + optional Int32 Index = -1 + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861233.aspx + + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863159.aspx + + Int32 RGB + Single Position + optional Single Transparency = 0 + optional Int32 Index = -1 + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863159.aspx + + Int32 RGB + Single Position + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863159.aspx + + Int32 RGB + Single Position + optional Single Transparency = 0 + + + + SupportByVersion Office 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864086.aspx + + Int32 RGB + Single Position + optional Single Transparency = 0 + optional Int32 Index = -1 + optional Single Brightness = 0 + + + + SupportByVersion Office 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864086.aspx + + Int32 RGB + Single Position + + + + SupportByVersion Office 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864086.aspx + + Int32 RGB + Single Position + optional Single Transparency = 0 + + + + SupportByVersion Office 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864086.aspx + + Int32 RGB + Single Position + optional Single Transparency = 0 + optional Int32 Index = -1 + + + + SupportByVersionAttribute Office, 12,14,15 + + + + + SupportByVersionAttribute Office, 12,14,15 + + + + + SupportByVersion Office 12, 14, 15 + Get + + Int32 Index + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864855.aspx + + + + + DispatchInterface MsoDebugOptions_UTs + SupportByVersion Office, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + + + string bstrCollectionName + + + + SupportByVersion Office 12, 14, 15 + + + string bstrCollectionName + string bstrUnitTestName + + + + SupportByVersion Office 12, 14, 15 + + + string bstrCollectionName + string bstrUnitTestNameFilter + + + + SupportByVersionAttribute Office, 12,14,15 + + + + + SupportByVersionAttribute Office, 12,14,15 + + + + + SupportByVersion Office 12, 14, 15 + Get + + Int32 Index + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + DispatchInterface MsoDebugOptions_UT + SupportByVersion Office, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + DispatchInterface UserPermission + SupportByVersion Office, 11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860810.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864865.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862102.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862094.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862529.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861797.aspx + Unknown COM Proxy + + + + + DispatchInterface SmartDocument + SupportByVersion Office, 11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863963.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865250.aspx + + optional bool ConsiderAllSchemas = false + + + + SupportByVersion Office 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865250.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864173.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864983.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865469.aspx + + + + + DispatchInterface SearchScopes + SupportByVersion Office, 10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865267.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersionAttribute Office, 10,11,12,14,15 + + + + + SupportByVersionAttribute Office, 10,11,12,14,15 + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + + Int32 Index + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862063.aspx + + + + + DispatchInterface FileDialogFilter + SupportByVersion Office, 10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865576.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863755.aspx + Unknown COM Proxy + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865287.aspx + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863772.aspx + + + + + DispatchInterface WebPageFonts + SupportByVersion Office, 9,10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864178.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersionAttribute Office, 9,10,11,12,14,15 + + + + + SupportByVersionAttribute Office, 9,10,11,12,14,15 + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862200.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + NetOffice.OfficeApi.Enums.MsoCharacterSet Index + + + + DispatchInterface IFind + SupportByVersion Office, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + string bstrQueryName + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + string bstrQueryName + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + string bstrQueryName + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + DispatchInterface LineFormat + SupportByVersion Office, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/jj229678.aspx + + + + SupportByVersion Office 15 + + 1 + + + + SupportByVersion Office 15 + + 2 + + + + SupportByVersion Office 15 + + 3 + + + + SupportByVersion Office 15 + + 4 + + + + SupportByVersion Office 15 + + 5 + + + + SupportByVersion Office 15 + + 6 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862542.aspx + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 4 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 5 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860595.aspx + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864668.aspx + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 32768 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + -2147483648 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860276.aspx + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + -2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 4 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864897.aspx + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + -2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861858.aspx + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + -2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 4 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 5 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 6 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864036.aspx + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + -2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 4 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 5 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 6 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 7 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 8 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 9 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 10 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 11 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 12 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 13 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 14 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 15 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 16 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 17 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 18 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 19 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 20 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 21 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 22 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 23 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 24 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 25 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 26 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 27 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 28 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 29 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 30 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 31 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 32 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 33 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 34 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 35 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 36 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 37 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 38 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 39 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 40 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 41 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 42 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 43 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 44 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 45 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 46 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 47 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 48 + + + + SupportByVersion Office 12, 14, 15 + + 49 + + + + SupportByVersion Office 12, 14, 15 + + 50 + + + + SupportByVersion Office 12, 14, 15 + + 51 + + + + SupportByVersion Office 12, 14, 15 + + 52 + + + + SupportByVersion Office 12, 14, 15 + + 53 + + + + SupportByVersion Office 12, 14, 15 + + 54 + + + + CoClass CommandBars + SupportByVersion Office, 9,10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860339.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of CommandBars + + + + + creates a new instance of CommandBars + + registered ProgID + + + + returns all running Office.CommandBars objects from the running object table(ROT) + + an Office.CommandBars array + + + + returns a running Office.CommandBars object from the running object table(ROT). the method takes the first element from the table + + an Office.CommandBars object or null + + + + returns a running Office.CommandBars object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Office.CommandBars object or null + + + + creates active sink helper + + + + + SupportByVersion Office, 9,10,11,12,14,15 + + + + + SupportByVersion Office 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861536.aspx + + + + DispatchInterface SmartArt + SupportByVersion Office, 14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860804.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864968.aspx + + + + + SupportByVersion Office 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864691.aspx + Unknown COM Proxy + + + + + SupportByVersion Office 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862828.aspx + + + + + SupportByVersion Office 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860244.aspx + + + + + SupportByVersion Office 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861866.aspx + + + + + SupportByVersion Office 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862785.aspx + + + + + SupportByVersion Office 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862120.aspx + + + + + SupportByVersion Office 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865245.aspx + + + + + DispatchInterface IBlogExtensibility + SupportByVersion Office, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863146.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862840.aspx + + string BlogProvider + string FriendlyName + NetOffice.OfficeApi.Enums.MsoBlogCategorySupport CategorySupport + bool Padding + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863154.aspx + + string Account + Int32 ParentWindow + object Document + bool NewAccount + bool ShowPictureUI + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860220.aspx + + string Account + Int32 ParentWindow + object Document + String[] BlogNames + String[] BlogIDs + String[] BlogURLs + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861430.aspx + + string Account + Int32 ParentWindow + object Document + String[] PostTitles + String[] PostDates + String[] PostIDs + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861145.aspx + + string Account + string PostID + Int32 ParentWindow + string xHTML + string Title + string DatePosted + String[] Categories + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862458.aspx + + string Account + Int32 ParentWindow + object Document + string xHTML + string Title + string DateTime + String[] Categories + bool Draft + string PostID + string PublishMessage + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860616.aspx + + string Account + Int32 ParentWindow + object Document + string PostID + string xHTML + string Title + string DateTime + String[] Categories + bool Draft + string PublishMessage + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865355.aspx + + string Account + Int32 ParentWindow + object Document + String[] Categories + + + + DispatchInterface Ruler2 + SupportByVersion Office, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863414.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864866.aspx + Unknown COM Proxy + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862742.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864669.aspx + + + + + DispatchInterface IMsoTickLabels + SupportByVersion Office, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 14, 15 + Get + + + + + DispatchInterface ChartFont + SupportByVersion Office, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 14, 15 + Get + + + + + SupportByVersion Office 14, 15 + Get + Unknown COM Proxy + + + + + IMsoChart + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + Hidden stub .ctor + + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + Get + Unknown COM Proxy + + optional object pvarIndex + optional object varIgallery + + + + SupportByVersion Office 12, 14, 15 + Alias for get_ChartGroups + Unknown COM Proxy + + optional object pvarIndex + optional object varIgallery + + + + SupportByVersion Office 12, 14, 15 + Get + Unknown COM Proxy + + optional object pvarIndex + + + + SupportByVersion Office 12, 14, 15 + Alias for get_ChartGroups + Unknown COM Proxy + + optional object pvarIndex + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + optional object axisType + optional object AxisGroup + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + optional object axisType + optional object AxisGroup + + + + SupportByVersion Office 12, 14, 15 + Alias for get_HasAxis + + optional object axisType + optional object AxisGroup + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + optional object axisType + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + optional object axisType + + + + SupportByVersion Office 12, 14, 15 + Alias for get_HasAxis + + optional object axisType + + + + SupportByVersion Office 12, 14, 15 + Get + + optional bool fBackWall + + + + SupportByVersion Office 12, 14, 15 + Alias for get_Walls + + optional bool fBackWall + + + + DispatchInterface IMsoChart + SupportByVersion Office, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + + + optional object Password + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + + + optional object Password + optional object DrawingObjects + optional object Contents + optional object Scenarios + optional object UserInterfaceOnly + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + + + optional object Password + + + + SupportByVersion Office 12, 14, 15 + + + optional object Password + optional object DrawingObjects + + + + SupportByVersion Office 12, 14, 15 + + + optional object Password + optional object DrawingObjects + optional object Contents + + + + SupportByVersion Office 12, 14, 15 + + + optional object Password + optional object DrawingObjects + optional object Contents + optional object Scenarios + + + + SupportByVersion Office 12, 14, 15 + + + optional object Index + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + + + optional NetOffice.OfficeApi.Enums.XlDataLabelsType Type = 2 + optional object IMsoLegendKey + optional object AutoText + optional object HasLeaderLines + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + + + optional NetOffice.OfficeApi.Enums.XlDataLabelsType Type = 2 + + + + SupportByVersion Office 12, 14, 15 + + + optional NetOffice.OfficeApi.Enums.XlDataLabelsType Type = 2 + optional object IMsoLegendKey + + + + SupportByVersion Office 12, 14, 15 + + + optional NetOffice.OfficeApi.Enums.XlDataLabelsType Type = 2 + optional object IMsoLegendKey + optional object AutoText + + + + SupportByVersion Office 12, 14, 15 + + + optional NetOffice.OfficeApi.Enums.XlDataLabelsType Type = 2 + optional object IMsoLegendKey + optional object AutoText + optional object HasLeaderLines + optional object ShowSeriesName + optional object ShowCategoryName + optional object ShowValue + optional object ShowPercentage + optional object ShowBubbleSize + optional object Separator + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + + + optional NetOffice.OfficeApi.Enums.XlDataLabelsType Type = 2 + + + + SupportByVersion Office 12, 14, 15 + + + optional NetOffice.OfficeApi.Enums.XlDataLabelsType Type = 2 + optional object IMsoLegendKey + + + + SupportByVersion Office 12, 14, 15 + + + optional NetOffice.OfficeApi.Enums.XlDataLabelsType Type = 2 + optional object IMsoLegendKey + optional object AutoText + + + + SupportByVersion Office 12, 14, 15 + + + optional NetOffice.OfficeApi.Enums.XlDataLabelsType Type = 2 + optional object IMsoLegendKey + optional object AutoText + optional object HasLeaderLines + + + + SupportByVersion Office 12, 14, 15 + + + optional NetOffice.OfficeApi.Enums.XlDataLabelsType Type = 2 + optional object IMsoLegendKey + optional object AutoText + optional object HasLeaderLines + optional object ShowSeriesName + + + + SupportByVersion Office 12, 14, 15 + + + optional NetOffice.OfficeApi.Enums.XlDataLabelsType Type = 2 + optional object IMsoLegendKey + optional object AutoText + optional object HasLeaderLines + optional object ShowSeriesName + optional object ShowCategoryName + + + + SupportByVersion Office 12, 14, 15 + + + optional NetOffice.OfficeApi.Enums.XlDataLabelsType Type = 2 + optional object IMsoLegendKey + optional object AutoText + optional object HasLeaderLines + optional object ShowSeriesName + optional object ShowCategoryName + optional object ShowValue + + + + SupportByVersion Office 12, 14, 15 + + + optional NetOffice.OfficeApi.Enums.XlDataLabelsType Type = 2 + optional object IMsoLegendKey + optional object AutoText + optional object HasLeaderLines + optional object ShowSeriesName + optional object ShowCategoryName + optional object ShowValue + optional object ShowPercentage + + + + SupportByVersion Office 12, 14, 15 + + + optional NetOffice.OfficeApi.Enums.XlDataLabelsType Type = 2 + optional object IMsoLegendKey + optional object AutoText + optional object HasLeaderLines + optional object ShowSeriesName + optional object ShowCategoryName + optional object ShowValue + optional object ShowPercentage + optional object ShowBubbleSize + + + + SupportByVersion Office 12, 14, 15 + + + NetOffice.OfficeApi.Enums.XlChartType ChartType + optional object TypeName + + + + SupportByVersion Office 12, 14, 15 + + + NetOffice.OfficeApi.Enums.XlChartType ChartType + + + + SupportByVersion Office 12, 14, 15 + + + Int32 x + Int32 y + Int32 ElementID + Int32 Arg1 + Int32 Arg2 + + + + SupportByVersion Office 12, 14, 15 + + + string Source + optional object PlotBy + + + + SupportByVersion Office 12, 14, 15 + + + string Source + + + + SupportByVersion Office 12, 14, 15 + + + optional object Type + optional NetOffice.OfficeApi.Enums.XlAxisGroup AxisGroup = 1 + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + + + optional object Type + + + + SupportByVersion Office 12, 14, 15 + + + Int32 rGallery + optional object varFormat + + + + SupportByVersion Office 12, 14, 15 + + + Int32 rGallery + + + + SupportByVersion Office 12, 14, 15 + + + string bstr + + + + SupportByVersion Office 12, 14, 15 + + + optional object varSource + optional object varGallery + optional object varFormat + optional object varPlotBy + optional object varCategoryLabels + optional object varSeriesLabels + optional object varHasLegend + optional object varTitle + optional object varCategoryTitle + optional object varValueTitle + optional object varExtraTitle + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + + + optional object varSource + + + + SupportByVersion Office 12, 14, 15 + + + optional object varSource + optional object varGallery + + + + SupportByVersion Office 12, 14, 15 + + + optional object varSource + optional object varGallery + optional object varFormat + + + + SupportByVersion Office 12, 14, 15 + + + optional object varSource + optional object varGallery + optional object varFormat + optional object varPlotBy + + + + SupportByVersion Office 12, 14, 15 + + + optional object varSource + optional object varGallery + optional object varFormat + optional object varPlotBy + optional object varCategoryLabels + + + + SupportByVersion Office 12, 14, 15 + + + optional object varSource + optional object varGallery + optional object varFormat + optional object varPlotBy + optional object varCategoryLabels + optional object varSeriesLabels + + + + SupportByVersion Office 12, 14, 15 + + + optional object varSource + optional object varGallery + optional object varFormat + optional object varPlotBy + optional object varCategoryLabels + optional object varSeriesLabels + optional object varHasLegend + + + + SupportByVersion Office 12, 14, 15 + + + optional object varSource + optional object varGallery + optional object varFormat + optional object varPlotBy + optional object varCategoryLabels + optional object varSeriesLabels + optional object varHasLegend + optional object varTitle + + + + SupportByVersion Office 12, 14, 15 + + + optional object varSource + optional object varGallery + optional object varFormat + optional object varPlotBy + optional object varCategoryLabels + optional object varSeriesLabels + optional object varHasLegend + optional object varTitle + optional object varCategoryTitle + + + + SupportByVersion Office 12, 14, 15 + + + optional object varSource + optional object varGallery + optional object varFormat + optional object varPlotBy + optional object varCategoryLabels + optional object varSeriesLabels + optional object varHasLegend + optional object varTitle + optional object varCategoryTitle + optional object varValueTitle + + + + SupportByVersion Office 12, 14, 15 + + + optional Int32 Appearance = 1 + optional Int32 Format = -4147 + optional Int32 Size = 2 + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + + + optional Int32 Appearance = 1 + + + + SupportByVersion Office 12, 14, 15 + + + optional Int32 Appearance = 1 + optional Int32 Format = -4147 + + + + SupportByVersion Office 12, 14, 15 + + + object varName + Int32 LocaleID + Int32 ObjType + + + + SupportByVersion Office 12, 14, 15 + + + object varName + Int32 LocaleID + + + + SupportByVersion Office 12, 14, 15 + + + optional object varType + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + + + string bstr + optional object varFilterName + optional object varInteractive + + + + SupportByVersion Office 12, 14, 15 + + + string bstr + + + + SupportByVersion Office 12, 14, 15 + + + string bstr + optional object varFilterName + + + + SupportByVersion Office 12, 14, 15 + + + object varName + + + + SupportByVersion Office 12, 14, 15 + + + string bstrFileName + + + + SupportByVersion Office 12, 14, 15 + + + string bstrFileName + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + + + Int32 Layout + optional object varChartType + + + + SupportByVersion Office 12, 14, 15 + + + Int32 Layout + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + + + NetOffice.OfficeApi.Enums.MsoChartElementType RHS + + + + SupportByVersion Office 14, 15 + + + optional object Index + + + + SupportByVersion Office 14, 15 + + + + + + SupportByVersion Office 14, 15 + + + optional object Index + + + + SupportByVersion Office 14, 15 + + + + + + SupportByVersion Office 14, 15 + + + optional object Index + + + + SupportByVersion Office 14, 15 + + + + + + SupportByVersion Office 14, 15 + + + optional object Index + + + + SupportByVersion Office 14, 15 + + + + + + SupportByVersion Office 14, 15 + + + optional object Index + + + + SupportByVersion Office 14, 15 + + + + + + SupportByVersion Office 14, 15 + + + optional object Index + + + + SupportByVersion Office 14, 15 + + + + + + SupportByVersion Office 14, 15 + + + optional object Index + + + + SupportByVersion Office 14, 15 + + + + + + SupportByVersion Office 14, 15 + + + optional object Index + + + + SupportByVersion Office 14, 15 + + + + + + SupportByVersion Office 14, 15 + + + + + + SupportByVersion Office 14, 15 + + + + + + SupportByVersion Office 14, 15 + + + optional object Replace + + + + SupportByVersion Office 14, 15 + + + + + + SupportByVersion Office 15 + + + optional object Index + + + + SupportByVersion Office 15 + + + + + + SupportByVersion Office 15 + + + + + + SupportByVersion Office 15 + + + + + + SupportByVersion Office 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 14, 15 + Get + + + + + SupportByVersion Office 14, 15 + Get + + + + + SupportByVersion Office 14, 15 + Get + + + + + SupportByVersion Office 14, 15 + Get + + + + + SupportByVersion Office 14, 15 + Get + + + + + SupportByVersion Office 14, 15 + Get + + + + + SupportByVersion Office 14, 15 + Get + + + + + SupportByVersion Office 14, 15 + Get/Set + + + + + SupportByVersion Office 14, 15 + Get/Set + + + + + SupportByVersion Office 14, 15 + Get/Set + + + + + SupportByVersion Office 14, 15 + Get/Set + + + + + SupportByVersion Office 14, 15 + Get/Set + + + + + SupportByVersion Office 15 + Get/Set + + + + + SupportByVersion Office 15 + Get/Set + + + + + SupportByVersion Office 15 + Get/Set + + + + + SupportByVersion Office 15 + Get + + + + + SupportByVersion Office 15 + Get/Set + + + + + DispatchInterface IRibbonControl SupportByVersionAttribute Office, 12,14,15 + + + + + DispatchInterface ODSOFilters + SupportByVersion Office, 10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865224.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864658.aspx + + string Column + NetOffice.OfficeApi.Enums.MsoFilterComparison Comparison + NetOffice.OfficeApi.Enums.MsoFilterConjunction Conjunction + optional string bstrCompareTo = + optional bool DeferUpdate = false + + + + SupportByVersion Office 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864658.aspx + + string Column + NetOffice.OfficeApi.Enums.MsoFilterComparison Comparison + NetOffice.OfficeApi.Enums.MsoFilterConjunction Conjunction + + + + SupportByVersion Office 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864658.aspx + + string Column + NetOffice.OfficeApi.Enums.MsoFilterComparison Comparison + NetOffice.OfficeApi.Enums.MsoFilterConjunction Conjunction + optional string bstrCompareTo = + + + + SupportByVersion Office 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860318.aspx + + Int32 Index + optional bool DeferUpdate = false + + + + SupportByVersion Office 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860318.aspx + + Int32 Index + + + + SupportByVersionAttribute Office, 10,11,12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersionAttribute Office, 10,11,12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860835.aspx + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861525.aspx + Unknown COM Proxy + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + Int32 Index + + + + DispatchInterface ICommandBarsEvents + SupportByVersion Office, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + + + + DispatchInterface Assistant + SupportByVersion Office, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Int32 xLeft + Int32 yTop + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + bool On + string Callback + Int32 PrivateX + optional object Animation + optional object CustomTeaser + optional object Top + optional object Left + optional object Bottom + optional object Right + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + bool On + string Callback + Int32 PrivateX + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + bool On + string Callback + Int32 PrivateX + optional object Animation + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + bool On + string Callback + Int32 PrivateX + optional object Animation + optional object CustomTeaser + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + bool On + string Callback + Int32 PrivateX + optional object Animation + optional object CustomTeaser + optional object Top + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + bool On + string Callback + Int32 PrivateX + optional object Animation + optional object CustomTeaser + optional object Top + optional object Left + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + bool On + string Callback + Int32 PrivateX + optional object Animation + optional object CustomTeaser + optional object Top + optional object Left + optional object Bottom + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Int32 WizardID + bool varfSuccess + optional object Animation + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Int32 WizardID + bool varfSuccess + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Int32 WizardID + NetOffice.OfficeApi.Enums.MsoWizardActType act + optional object Animation + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Int32 WizardID + NetOffice.OfficeApi.Enums.MsoWizardActType act + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + string bstrAlertTitle + string bstrAlertText + NetOffice.OfficeApi.Enums.MsoAlertButtonType alb + NetOffice.OfficeApi.Enums.MsoAlertIconType alc + NetOffice.OfficeApi.Enums.MsoAlertDefaultType ald + NetOffice.OfficeApi.Enums.MsoAlertCancelType alq + bool varfSysAlert + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + DispatchInterface ShapeNodes + SupportByVersion Office, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Int32 Index + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Int32 Index + NetOffice.OfficeApi.Enums.MsoSegmentType SegmentType + NetOffice.OfficeApi.Enums.MsoEditingType EditingType + Single X1 + Single Y1 + optional Single X2 = 0 + optional Single Y2 = 0 + optional Single X3 = 0 + optional Single Y3 = 0 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Int32 Index + NetOffice.OfficeApi.Enums.MsoSegmentType SegmentType + NetOffice.OfficeApi.Enums.MsoEditingType EditingType + Single X1 + Single Y1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Int32 Index + NetOffice.OfficeApi.Enums.MsoSegmentType SegmentType + NetOffice.OfficeApi.Enums.MsoEditingType EditingType + Single X1 + Single Y1 + optional Single X2 = 0 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Int32 Index + NetOffice.OfficeApi.Enums.MsoSegmentType SegmentType + NetOffice.OfficeApi.Enums.MsoEditingType EditingType + Single X1 + Single Y1 + optional Single X2 = 0 + optional Single Y2 = 0 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Int32 Index + NetOffice.OfficeApi.Enums.MsoSegmentType SegmentType + NetOffice.OfficeApi.Enums.MsoEditingType EditingType + Single X1 + Single Y1 + optional Single X2 = 0 + optional Single Y2 = 0 + optional Single X3 = 0 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Int32 Index + NetOffice.OfficeApi.Enums.MsoEditingType EditingType + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Int32 Index + Single X1 + Single Y1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Int32 Index + NetOffice.OfficeApi.Enums.MsoSegmentType SegmentType + + + + SupportByVersionAttribute Office, 9,10,11,12,14,15 + + + + + SupportByVersionAttribute Office, 9,10,11,12,14,15 + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + object Index + + + + Interface IConverterUICallback + SupportByVersion Office, 14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863370.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861826.aspx + + UIntPtr uPercentComplete + + + + SupportByVersion Office 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861376.aspx + + string bstrText + string bstrCaption + UIntPtr uType + Int32 pidResult + + + + SupportByVersion Office 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861803.aspx + + string bstrText + string bstrCaption + string pbstrInput + Int32 fPassword + + + + SupportByVersion Office 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862073.aspx + + + + SupportByVersion Office 12, 14, 15 + + 0 + + + + SupportByVersion Office 12, 14, 15 + + 1 + + + + SupportByVersion Office 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863128.aspx + + + + SupportByVersion Office 12, 14, 15 + + -4108 + + + + SupportByVersion Office 12, 14, 15 + + 0 + + + + SupportByVersion Office 12, 14, 15 + + 1 + + + + SupportByVersion Office 12, 14, 15 + + -4131 + + + + SupportByVersion Office 12, 14, 15 + + -4152 + + + + SupportByVersion Office 12, 14, 15 + + 2 + + + + SupportByVersion Office 12, 14, 15 + + 3 + + + + SupportByVersion Office 12, 14, 15 + + 4 + + + + SupportByVersion Office 12, 14, 15 + + 5 + + + + SupportByVersion Office 12, 14, 15 + + 6 + + + + SupportByVersion Office 12, 14, 15 + + 7 + + + + SupportByVersion Office 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862067.aspx + + + + SupportByVersion Office 12, 14, 15 + + -2 + + + + SupportByVersion Office 12, 14, 15 + + 0 + + + + SupportByVersion Office 12, 14, 15 + + 1 + + + + SupportByVersion Office 12, 14, 15 + + 2 + + + + SupportByVersion Office 12, 14, 15 + + 3 + + + + SupportByVersion Office 12, 14, 15 + + 4 + + + + SupportByVersion Office 12, 14, 15 + + 5 + + + + SupportByVersion Office 12, 14, 15 + + 6 + + + + SupportByVersion Office 12, 14, 15 + + 7 + + + + SupportByVersion Office 12, 14, 15 + + 8 + + + + SupportByVersion Office 12, 14, 15 + + 9 + + + + SupportByVersion Office 12, 14, 15 + + 10 + + + + SupportByVersion Office 12, 14, 15 + + 11 + + + + SupportByVersion Office 12, 14, 15 + + 12 + + + + SupportByVersion Office 12, 14, 15 + + 13 + + + + SupportByVersion Office 12, 14, 15 + + 14 + + + + SupportByVersion Office 12, 14, 15 + + 15 + + + + SupportByVersion Office 12, 14, 15 + + 16 + + + + SupportByVersion Office 12, 14, 15 + + 17 + + + + SupportByVersion Office 12, 14, 15 + + 18 + + + + SupportByVersion Office 12, 14, 15 + + 19 + + + + SupportByVersion Office 12, 14, 15 + + 20 + + + + SupportByVersion Office 12, 14, 15 + + 21 + + + + SupportByVersion Office 12, 14, 15 + + 22 + + + + SupportByVersion Office 12, 14, 15 + + 23 + + + + SupportByVersion Office 12, 14, 15 + + 24 + + + + SupportByVersion Office 12, 14, 15 + + 25 + + + + SupportByVersion Office 12, 14, 15 + + 26 + + + + SupportByVersion Office 12, 14, 15 + + 27 + + + + SupportByVersion Office 12, 14, 15 + + 28 + + + + SupportByVersion Office 12, 14, 15 + + 29 + + + + SupportByVersion Office 12, 14, 15 + + 30 + + + + SupportByVersion Office 12, 14, 15 + + 31 + + + + SupportByVersion Office 12, 14, 15 + + 32 + + + + SupportByVersion Office 12, 14, 15 + + 33 + + + + SupportByVersion Office 12, 14, 15 + + 34 + + + + SupportByVersion Office 12, 14, 15 + + 35 + + + + SupportByVersion Office 12, 14, 15 + + 36 + + + + SupportByVersion Office 12, 14, 15 + + 37 + + + + SupportByVersion Office 12, 14, 15 + + 38 + + + + SupportByVersion Office 12, 14, 15 + + 39 + + + + SupportByVersion Office 12, 14, 15 + + 40 + + + + SupportByVersion Office 12, 14, 15 + + 41 + + + + SupportByVersion Office 12, 14, 15 + + 42 + + + + SupportByVersion Office 12, 14, 15 + + 10001 + + + + SupportByVersion Office 12, 14, 15 + + 10002 + + + + SupportByVersion Office 12, 14, 15 + + 10003 + + + + SupportByVersion Office 12, 14, 15 + + 10004 + + + + SupportByVersion Office 12, 14, 15 + + 10005 + + + + SupportByVersion Office 12, 14, 15 + + 10006 + + + + SupportByVersion Office 12, 14, 15 + + 10007 + + + + SupportByVersion Office 12, 14, 15 + + 10008 + + + + SupportByVersion Office 12, 14, 15 + + 10009 + + + + SupportByVersion Office 12, 14, 15 + + 10010 + + + + SupportByVersion Office 12, 14, 15 + + 10011 + + + + SupportByVersion Office 12, 14, 15 + + 10012 + + + + SupportByVersion Office 12, 14, 15 + + 10013 + + + + SupportByVersion Office 12, 14, 15 + + 10014 + + + + SupportByVersion Office 12, 14, 15 + + 10015 + + + + SupportByVersion Office 12, 14, 15 + + 10016 + + + + SupportByVersion Office 12, 14, 15 + + 10017 + + + + SupportByVersion Office 12, 14, 15 + + 10018 + + + + SupportByVersion Office 12, 14, 15 + + 10019 + + + + SupportByVersion Office 12, 14, 15 + + 10020 + + + + SupportByVersion Office 12, 14, 15 + + 10021 + + + + SupportByVersion Office 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861202.aspx + + + + SupportByVersion Office 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 11, 12, 14, 15 + + 3 + + + + SupportByVersion Office 11, 12, 14, 15 + + 4 + + + + SupportByVersion Office 11, 12, 14, 15 + + 5 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865533.aspx + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 4 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 5 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 6 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 7 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 8 + + + + SupportByVersion Office 11, 12, 14, 15 + + 9 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 4 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 5 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 6 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 7 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 8 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 9 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 10 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 11 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 12 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 13 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 14 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 15 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 16 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 17 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 18 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 19 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 20 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 21 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 22 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 23 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 4 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 5 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 6 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 7 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/jj228657.aspx + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 4 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 5 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 6 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 7 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 8 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 9 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 10 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 11 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860553.aspx + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860579.aspx + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864692.aspx + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + -2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 4 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 5 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 6 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 7 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 8 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 9 + + + + necessary factory info, used from NetOffice.Factory while Initialize() + + + + + CoClass CommandBarComboBox + SupportByVersion Office, 9,10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865547.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of CommandBarComboBox + + + + + creates a new instance of CommandBarComboBox + + registered ProgID + + + + returns all running Office.CommandBarComboBox objects from the running object table(ROT) + + an Office.CommandBarComboBox array + + + + returns a running Office.CommandBarComboBox object from the running object table(ROT). the method takes the first element from the table + + an Office.CommandBarComboBox object or null + + + + returns a running Office.CommandBarComboBox object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Office.CommandBarComboBox object or null + + + + creates active sink helper + + + + + SupportByVersion Office, 9,10,11,12,14,15 + + + + + SupportByVersion Office 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864955.aspx + + + + DispatchInterface RulerLevel2 + SupportByVersion Office, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865342.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862086.aspx + Unknown COM Proxy + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860824.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862066.aspx + + + + + DispatchInterface IMsoChartFormat + SupportByVersion Office, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 14, 15 + Get + + + + + SupportByVersion Office 15 + Get + + + + + SupportByVersion Office 15 + Get/Set + + + + + DispatchInterface IMsoChartGroup + SupportByVersion Office, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + + + optional object Index + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 15 + + + optional object Index + + + + SupportByVersion Office 15 + + + + + + SupportByVersion Office 15 + + + optional object Index + + + + SupportByVersion Office 15 + + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 14, 15 + Get + + + + + SupportByVersion Office 14, 15 + Get + Unknown COM Proxy + + + + + DispatchInterface IMsoInterior + SupportByVersion Office, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 14, 15 + Get + + + + + SupportByVersion Office 14, 15 + Get + Unknown COM Proxy + + + + + DispatchInterface IMsoBorder + SupportByVersion Office, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 14, 15 + Get + + + + + SupportByVersion Office 14, 15 + Get + Unknown COM Proxy + + + + + DispatchInterface IRibbonUI SupportByVersionAttribute Office, 12,14,15 + + + + + DispatchInterface GlowFormat + SupportByVersion Office, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864010.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861153.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863453.aspx + + + + + SupportByVersion Office 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862431.aspx + + + + + DispatchInterface DocumentInspector + SupportByVersion Office, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862517.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861849.aspx + + NetOffice.OfficeApi.Enums.MsoDocInspectorStatus Status + string Results + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863804.aspx + + NetOffice.OfficeApi.Enums.MsoDocInspectorStatus Status + string Results + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862757.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860548.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863644.aspx + Unknown COM Proxy + + + + + DispatchInterface MetaProperties + SupportByVersion Office, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863135.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860861.aspx + + string InternalName + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862127.aspx + + + + + SupportByVersionAttribute Office, 12,14,15 + + + + + SupportByVersionAttribute Office, 12,14,15 + + + + + SupportByVersion Office 12, 14, 15 + Get + + object Index + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864657.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864625.aspx + Unknown COM Proxy + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864562.aspx + + + + + DispatchInterface OfficeDataSourceObject + SupportByVersion Office, 10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864883.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864664.aspx + + NetOffice.OfficeApi.Enums.MsoMoveRow MsoMoveRow + optional Int32 RowNbr = 1 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864664.aspx + + NetOffice.OfficeApi.Enums.MsoMoveRow MsoMoveRow + + + + SupportByVersion Office 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865289.aspx + + optional string bstrSrc = + optional string bstrConnect = + optional string bstrTable = + optional Int32 fOpenExclusive = 0 + optional Int32 fNeverPrompt = 1 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865289.aspx + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865289.aspx + + optional string bstrSrc = + + + + SupportByVersion Office 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865289.aspx + + optional string bstrSrc = + optional string bstrConnect = + + + + SupportByVersion Office 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865289.aspx + + optional string bstrSrc = + optional string bstrConnect = + optional string bstrTable = + + + + SupportByVersion Office 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865289.aspx + + optional string bstrSrc = + optional string bstrConnect = + optional string bstrTable = + optional Int32 fOpenExclusive = 0 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861392.aspx + + string SortField1 + optional bool SortAscending1 = true + optional string SortField2 = + optional bool SortAscending2 = true + optional string SortField3 = + optional bool SortAscending3 = true + + + + SupportByVersion Office 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861392.aspx + + string SortField1 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861392.aspx + + string SortField1 + optional bool SortAscending1 = true + + + + SupportByVersion Office 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861392.aspx + + string SortField1 + optional bool SortAscending1 = true + optional string SortField2 = + + + + SupportByVersion Office 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861392.aspx + + string SortField1 + optional bool SortAscending1 = true + optional string SortField2 = + optional bool SortAscending2 = true + + + + SupportByVersion Office 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861392.aspx + + string SortField1 + optional bool SortAscending1 = true + optional string SortField2 = + optional bool SortAscending2 = true + optional string SortField3 = + + + + SupportByVersion Office 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863341.aspx + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861793.aspx + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861897.aspx + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860869.aspx + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860229.aspx + Unknown COM Proxy + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861767.aspx + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860598.aspx + Unknown COM Proxy + + + + + DispatchInterface HTMLProjectItem + SupportByVersion Office, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + string FileName + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + optional NetOffice.OfficeApi.Enums.MsoHTMLProjectOpen OpenKind = 0 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + string FileName + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + DispatchInterface PictureFormat + SupportByVersion Office, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Single Increment + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Single Increment + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 14, 15 + Get + + + + + Interface LegendEntry + SupportByVersion Office, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 14, 15 + Get + + + + + Interface LegendEntries + SupportByVersion Office, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersionAttribute Office, 12,14,15 + + + + + SupportByVersionAttribute Office, 12,14,15 + + + + + SupportByVersion Office 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 14, 15 + Get + + + + + SupportByVersion Office 14, 15 + Get + + object Index + + + + SupportByVersion Office 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862048.aspx + + + + SupportByVersion Office 12, 14, 15 + + -2 + + + + SupportByVersion Office 12, 14, 15 + + 1 + + + + SupportByVersion Office 12, 14, 15 + + 2 + + + + SupportByVersion Office 12, 14, 15 + + 3 + + + + SupportByVersion Office 12, 14, 15 + + 4 + + + + SupportByVersion Office 12, 14, 15 + + 5 + + + + SupportByVersion Office 12, 14, 15 + + + + + SupportByVersion Office 12, 14, 15 + + 1 + + + + SupportByVersion Office 12, 14, 15 + + 3 + + + + SupportByVersion Office 12, 14, 15 + + 4 + + + + SupportByVersion Office 12, 14, 15 + + 2 + + + + SupportByVersion Office 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865249.aspx + + + + SupportByVersion Office 12, 14, 15 + + 0 + + + + SupportByVersion Office 12, 14, 15 + + 1 + + + + SupportByVersion Office 12, 14, 15 + + 2 + + + + SupportByVersion Office 12, 14, 15 + + 3 + + + + SupportByVersion Office 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861451.aspx + + + + SupportByVersion Office 12, 14, 15 + + -2 + + + + SupportByVersion Office 12, 14, 15 + + 0 + + + + SupportByVersion Office 12, 14, 15 + + 1 + + + + SupportByVersion Office 12, 14, 15 + + 2 + + + + SupportByVersion Office 12, 14, 15 + + 3 + + + + SupportByVersion Office 12, 14, 15 + + 4 + + + + SupportByVersion Office 12, 14, 15 + + 5 + + + + SupportByVersion Office 12, 14, 15 + + 6 + + + + SupportByVersion Office 12, 14, 15 + + 7 + + + + SupportByVersion Office 12, 14, 15 + + 8 + + + + SupportByVersion Office 12, 14, 15 + + 9 + + + + SupportByVersion Office 12, 14, 15 + + 10 + + + + SupportByVersion Office 12, 14, 15 + + 11 + + + + SupportByVersion Office 12, 14, 15 + + 12 + + + + SupportByVersion Office 12, 14, 15 + + 13 + + + + SupportByVersion Office 12, 14, 15 + + 14 + + + + SupportByVersion Office 12, 14, 15 + + 15 + + + + SupportByVersion Office 12, 14, 15 + + 16 + + + + SupportByVersion Office 12, 14, 15 + + 17 + + + + SupportByVersion Office 12, 14, 15 + + 18 + + + + SupportByVersion Office 12, 14, 15 + + 19 + + + + SupportByVersion Office 12, 14, 15 + + 20 + + + + SupportByVersion Office 12, 14, 15 + + 21 + + + + SupportByVersion Office 12, 14, 15 + + 22 + + + + SupportByVersion Office 12, 14, 15 + + 23 + + + + SupportByVersion Office 12, 14, 15 + + 24 + + + + SupportByVersion Office 12, 14, 15 + + 25 + + + + SupportByVersion Office 12, 14, 15 + + 26 + + + + SupportByVersion Office 12, 14, 15 + + 27 + + + + SupportByVersion Office 12, 14, 15 + + 28 + + + + SupportByVersion Office 12, 14, 15 + + 29 + + + + SupportByVersion Office 12, 14, 15 + + 30 + + + + SupportByVersion Office 12, 14, 15 + + 31 + + + + SupportByVersion Office 12, 14, 15 + + 32 + + + + SupportByVersion Office 12, 14, 15 + + 33 + + + + SupportByVersion Office 12, 14, 15 + + 34 + + + + SupportByVersion Office 12, 14, 15 + + 35 + + + + SupportByVersion Office 15 + + 36 + + + + SupportByVersion Office 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865244.aspx + + + + SupportByVersion Office 12, 14, 15 + + -2 + + + + SupportByVersion Office 12, 14, 15 + + 0 + + + + SupportByVersion Office 12, 14, 15 + + 1 + + + + SupportByVersion Office 12, 14, 15 + + 2 + + + + SupportByVersion Office 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863513.aspx + + + + SupportByVersion Office 12, 14, 15 + + 0 + + + + SupportByVersion Office 12, 14, 15 + + 1 + + + + SupportByVersion Office 12, 14, 15 + + 2 + + + + SupportByVersion Office 12, 14, 15 + + 3 + + + + SupportByVersion Office 12, 14, 15 + + 4 + + + + SupportByVersion Office 12, 14, 15 + + 5 + + + + SupportByVersion Office 11, 12, 14, 15 + + + + + SupportByVersion Office 11, 12, 14, 15 + + 0 + + + + SupportByVersion Office 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863869.aspx + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 4 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861226.aspx + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + -1 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 4 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 4 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 8 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862070.aspx + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 4 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 5 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 6 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 7 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 8 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 9 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 10 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 11 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 12 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 13 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 14 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 15 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 16 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 17 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 18 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 19 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 20 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 21 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 22 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 23 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 24 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 25 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 26 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863348.aspx + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862770.aspx + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + -2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 4 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 5 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 6 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 7 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 8 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 9 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 10 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 11 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 12 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 13 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 14 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 15 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 16 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 17 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 18 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 19 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 20 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 21 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 22 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 23 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 24 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 25 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 26 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 27 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 28 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 29 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 30 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 31 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 32 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 33 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 34 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 35 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 36 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 37 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 38 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 39 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 40 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 41 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 42 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 43 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 44 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 45 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 46 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 47 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 48 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 49 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 50 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 51 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 52 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 53 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 54 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 55 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 56 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 57 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 58 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 59 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 60 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 61 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 62 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 63 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 64 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 65 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 66 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 67 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 68 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 69 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 70 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 71 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 72 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 73 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 74 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 75 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 76 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 77 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 78 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 79 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 80 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 81 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 82 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 83 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 84 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 85 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 86 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 87 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 88 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 89 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 90 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 91 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 92 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 93 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 94 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 95 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 96 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 97 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 98 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 99 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 100 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 101 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 102 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 103 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 104 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 105 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 106 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 107 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 108 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 109 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 110 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 111 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 112 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 113 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 114 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 115 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 116 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 117 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 118 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 119 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 120 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 121 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 122 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 123 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 124 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 125 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 126 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 127 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 128 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 129 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 130 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 131 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 132 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 133 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 134 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 135 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 136 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 137 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 138 + + + + SupportByVersion Office 12, 14, 15 + + 139 + + + + SupportByVersion Office 12, 14, 15 + + 140 + + + + SupportByVersion Office 12, 14, 15 + + 141 + + + + SupportByVersion Office 12, 14, 15 + + 142 + + + + SupportByVersion Office 12, 14, 15 + + 143 + + + + SupportByVersion Office 12, 14, 15 + + 144 + + + + SupportByVersion Office 12, 14, 15 + + 145 + + + + SupportByVersion Office 12, 14, 15 + + 146 + + + + SupportByVersion Office 12, 14, 15 + + 147 + + + + SupportByVersion Office 12, 14, 15 + + 148 + + + + SupportByVersion Office 12, 14, 15 + + 149 + + + + SupportByVersion Office 12, 14, 15 + + 150 + + + + SupportByVersion Office 12, 14, 15 + + 151 + + + + SupportByVersion Office 12, 14, 15 + + 152 + + + + SupportByVersion Office 12, 14, 15 + + 153 + + + + SupportByVersion Office 12, 14, 15 + + 154 + + + + SupportByVersion Office 12, 14, 15 + + 155 + + + + SupportByVersion Office 12, 14, 15 + + 156 + + + + SupportByVersion Office 12, 14, 15 + + 157 + + + + SupportByVersion Office 12, 14, 15 + + 158 + + + + SupportByVersion Office 12, 14, 15 + + 159 + + + + SupportByVersion Office 12, 14, 15 + + 160 + + + + SupportByVersion Office 12, 14, 15 + + 161 + + + + SupportByVersion Office 12, 14, 15 + + 162 + + + + SupportByVersion Office 12, 14, 15 + + 163 + + + + SupportByVersion Office 12, 14, 15 + + 164 + + + + SupportByVersion Office 12, 14, 15 + + 165 + + + + SupportByVersion Office 12, 14, 15 + + 166 + + + + SupportByVersion Office 12, 14, 15 + + 167 + + + + SupportByVersion Office 12, 14, 15 + + 168 + + + + SupportByVersion Office 12, 14, 15 + + 169 + + + + SupportByVersion Office 12, 14, 15 + + 170 + + + + SupportByVersion Office 12, 14, 15 + + 171 + + + + SupportByVersion Office 12, 14, 15 + + 172 + + + + SupportByVersion Office 12, 14, 15 + + 173 + + + + SupportByVersion Office 12, 14, 15 + + 174 + + + + SupportByVersion Office 12, 14, 15 + + 175 + + + + SupportByVersion Office 12, 14, 15 + + 176 + + + + SupportByVersion Office 12, 14, 15 + + 177 + + + + SupportByVersion Office 12, 14, 15 + + 178 + + + + SupportByVersion Office 12, 14, 15 + + 179 + + + + SupportByVersion Office 12, 14, 15 + + 180 + + + + SupportByVersion Office 12, 14, 15 + + 181 + + + + SupportByVersion Office 12, 14, 15 + + 182 + + + + SupportByVersion Office 12, 14, 15 + + 183 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860918.aspx + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + -2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864095.aspx + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861792.aspx + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + -2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 4 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 5 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 6 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 7 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 8 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 9 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 10 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 11 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 12 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 13 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 14 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 15 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 16 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 17 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 18 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 19 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 20 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 21 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 22 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 23 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 24 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 25 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 26 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 27 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 28 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 29 + + + + SupportByVersion Office 15 + + 30 + + + + SupportByVersion Office 15 + + 31 + + + + SupportByVersion Office 15 + + 32 + + + + SupportByVersion Office 15 + + 33 + + + + SupportByVersion Office 15 + + 34 + + + + SupportByVersion Office 15 + + 35 + + + + SupportByVersion Office 15 + + 36 + + + + SupportByVersion Office 15 + + 37 + + + + SupportByVersion Office 15 + + 38 + + + + SupportByVersion Office 15 + + 39 + + + + SupportByVersion Office 15 + + 40 + + + + SupportByVersion Office 15 + + 41 + + + + SupportByVersion Office 15 + + 42 + + + + SupportByVersion Office 15 + + 43 + + + + SupportByVersion Office 15 + + 44 + + + + SupportByVersion Office 15 + + 45 + + + + SupportByVersion Office 15 + + 46 + + + + SupportByVersion Office 15 + + 47 + + + + SupportByVersion Office 15 + + 48 + + + + SupportByVersion Office 15 + + 49 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864103.aspx + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + -2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865007.aspx + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + -2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 3 + + + + wrapper class for CustomTaskPane instance + + + + + Creates an instance of the class + + Type information for the specified UserControl + title of the control + + + + Raise the VisibleChanged event + + + + + Raise the DockPositionStateChange event + + + + + Attach the event triggers + + + + + Occurs when task visibility is changed + + + + + Occurs when dock postion state is changed + + + + + properties was set from the client before the instance was created. The COMAddin class perfom latebind property set calls during this dictionary + + + + + info about the inner taskpane instance is already created + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + CustomTaskPane instance + + + + + UserControl type info + + + + + Additional Arguments for OnConnection. The UserControl must implement ITaskPane to use it + + + + + TaskCollection for COMAddin + + + + + Creates an instance of the class + + + + + Add a new child to the list + + new child + title(caption) of the child + new instance + + + + Returns an Enumerator + + IEnumerator instance + + + + Returns an Enumerator + + IEnumerator instance + + + + Collection items count + + + + + Returns an element from specified index + + specified index + TaskPaneInfo instance + + + + CoClass CustomXMLSchemaCollection + SupportByVersion Office, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860324.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of CustomXMLSchemaCollection + + + + + creates a new instance of CustomXMLSchemaCollection + + registered ProgID + + + + returns all running Office.CustomXMLSchemaCollection objects from the running object table(ROT) + + an Office.CustomXMLSchemaCollection array + + + + returns a running Office.CustomXMLSchemaCollection object from the running object table(ROT). the method takes the first element from the table + + an Office.CustomXMLSchemaCollection object or null + + + + returns a running Office.CustomXMLSchemaCollection object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Office.CustomXMLSchemaCollection object or null + + + + creates active sink helper + + + + + DispatchInterface ContactCard + SupportByVersion Office, 14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860545.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863157.aspx + + + + + SupportByVersion Office 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861819.aspx + + NetOffice.OfficeApi.Enums.MsoContactCardStyle CardStyle + Int32 RectangleLeft + Int32 RectangleRight + Int32 RectangleTop + Int32 RectangleBottom + Int32 HorizontalPosition + optional bool ShowWithDelay = false + + + + SupportByVersion Office 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861819.aspx + + NetOffice.OfficeApi.Enums.MsoContactCardStyle CardStyle + Int32 RectangleLeft + Int32 RectangleRight + Int32 RectangleTop + Int32 RectangleBottom + Int32 HorizontalPosition + + + + DispatchInterface IBlogPictureExtensibility + SupportByVersion Office, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860265.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860839.aspx + + string BlogPictureProvider + string FriendlyName + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862798.aspx + + string Account + string BlogProvider + Int32 ParentWindow + object Document + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864012.aspx + + string Account + Int32 ParentWindow + object Document + object Image + string PictureURI + Int32 ImageType + + + + DispatchInterface ChartGroups + SupportByVersion Office, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersionAttribute Office, 12,14,15 + + + + + SupportByVersionAttribute Office, 12,14,15 + + + + + SupportByVersion Office 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + + + object Index + + + + DispatchInterface ThemeEffectScheme + SupportByVersion Office, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861360.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863314.aspx + + string FileName + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860772.aspx + Unknown COM Proxy + + + + + DispatchInterface TextFrame2 + SupportByVersion Office, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864684.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861520.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862767.aspx + Unknown COM Proxy + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864608.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863957.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862817.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864854.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861757.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860852.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863972.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862146.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862822.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864046.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861443.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865476.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865485.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861442.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862416.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863658.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861221.aspx + + + + + SupportByVersion Office 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863442.aspx + + + + + DispatchInterface CustomXMLNodes + SupportByVersion Office, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862726.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersionAttribute Office, 12,14,15 + + + + + SupportByVersionAttribute Office, 12,14,15 + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865501.aspx + Unknown COM Proxy + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861782.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + + Int32 Index + + + + DispatchInterface SharedWorkspaceFolder + SupportByVersion Office, 11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860894.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860569.aspx + + optional object DeleteEventIfFolderContainsFiles + + + + SupportByVersion Office 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860569.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860581.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864092.aspx + Unknown COM Proxy + + + + + DispatchInterface HTMLProject + SupportByVersion Office, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + optional bool Refresh = true + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + optional bool Refresh = true + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + optional NetOffice.OfficeApi.Enums.MsoHTMLProjectOpen OpenKind = 0 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + DispatchInterface BalloonCheckboxes + SupportByVersion Office, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersionAttribute Office, 9,10,11,12,14,15 + + + + + SupportByVersionAttribute Office, 9,10,11,12,14,15 + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + Int32 Index + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + DispatchInterface Shape + SupportByVersion Office, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + NetOffice.OfficeApi.Enums.MsoFlipCmd FlipCmd + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Single Increment + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Single Increment + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Single Increment + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Single Factor + NetOffice.OfficeApi.Enums.MsoTriState RelativeToOriginalSize + optional NetOffice.OfficeApi.Enums.MsoScaleFrom fScale = 0 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Single Factor + NetOffice.OfficeApi.Enums.MsoTriState RelativeToOriginalSize + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Single Factor + NetOffice.OfficeApi.Enums.MsoTriState RelativeToOriginalSize + optional NetOffice.OfficeApi.Enums.MsoScaleFrom fScale = 0 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Single Factor + NetOffice.OfficeApi.Enums.MsoTriState RelativeToOriginalSize + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + optional object Replace + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + NetOffice.OfficeApi.Enums.MsoZOrderCmd ZOrderCmd + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + Single Increment + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + Single Increment + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + Single Increment + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + Single Increment + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 14, 15 + + + NetOffice.OfficeApi.SmartArtLayout Layout + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 14, 15 + Get + + + + + SupportByVersion Office 14, 15 + Get + + + + + SupportByVersion Office 14, 15 + Get/Set + + + + + DispatchInterface CommandBarControls + SupportByVersion Office, 9,10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862747.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861771.aspx + + optional object Type + optional object Id + optional object Parameter + optional object Before + optional object Temporary + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861771.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861771.aspx + + optional object Type + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861771.aspx + + optional object Type + optional object Id + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861771.aspx + + optional object Type + optional object Id + optional object Parameter + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861771.aspx + + optional object Type + optional object Id + optional object Parameter + optional object Before + + + + SupportByVersionAttribute Office, 9,10,11,12,14,15 + + + + + SupportByVersionAttribute Office, 9,10,11,12,14,15 + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860596.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + object Index + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860798.aspx + + + + + SupportByVersion Office 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/jj228403.aspx + + + + SupportByVersion Office 15 + + -2 + + + + SupportByVersion Office 15 + + 0 + + + + SupportByVersion Office 15 + + 1 + + + + SupportByVersion Office 15 + + 2 + + + + SupportByVersion Office 15 + + 3 + + + + SupportByVersion Office 15 + + 4 + + + + SupportByVersion Office 15 + + 5 + + + + SupportByVersion Office 15 + + 6 + + + + SupportByVersion Office 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863302.aspx + + + + SupportByVersion Office 12, 14, 15 + + -2 + + + + SupportByVersion Office 12, 14, 15 + + 1 + + + + SupportByVersion Office 12, 14, 15 + + 2 + + + + SupportByVersion Office 12, 14, 15 + + 3 + + + + SupportByVersion Office 12, 14, 15 + + 4 + + + + SupportByVersion Office 12, 14, 15 + + + + + SupportByVersion Office 12, 14, 15 + + 4 + + + + SupportByVersion Office 12, 14, 15 + + 2 + + + + SupportByVersion Office 12, 14, 15 + + -4142 + + + + SupportByVersion Office 12, 14, 15 + + 3 + + + + SupportByVersion Office 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864159.aspx + + + + SupportByVersion Office 12, 14, 15 + + -2 + + + + SupportByVersion Office 12, 14, 15 + + 0 + + + + SupportByVersion Office 12, 14, 15 + + 1 + + + + SupportByVersion Office 12, 14, 15 + + 2 + + + + SupportByVersion Office 12, 14, 15 + + 3 + + + + SupportByVersion Office 12, 14, 15 + + 4 + + + + SupportByVersion Office 12, 14, 15 + + 5 + + + + SupportByVersion Office 12, 14, 15 + + 6 + + + + SupportByVersion Office 12, 14, 15 + + 7 + + + + SupportByVersion Office 12, 14, 15 + + 8 + + + + SupportByVersion Office 12, 14, 15 + + 9 + + + + SupportByVersion Office 12, 14, 15 + + 10 + + + + SupportByVersion Office 12, 14, 15 + + 11 + + + + SupportByVersion Office 12, 14, 15 + + 12 + + + + SupportByVersion Office 12, 14, 15 + + 13 + + + + SupportByVersion Office 12, 14, 15 + + 14 + + + + SupportByVersion Office 12, 14, 15 + + 15 + + + + SupportByVersion Office 12, 14, 15 + + 16 + + + + SupportByVersion Office 12, 14, 15 + + 17 + + + + SupportByVersion Office 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863136.aspx + + + + SupportByVersion Office 12, 14, 15 + + 0 + + + + SupportByVersion Office 12, 14, 15 + + 1 + + + + SupportByVersion Office 12, 14, 15 + + 2 + + + + SupportByVersion Office 12, 14, 15 + + 3 + + + + SupportByVersion Office 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861441.aspx + + + + SupportByVersion Office 12, 14, 15 + + 0 + + + + SupportByVersion Office 12, 14, 15 + + 1 + + + + SupportByVersion Office 12, 14, 15 + + 2 + + + + SupportByVersion Office 12, 14, 15 + + 3 + + + + SupportByVersion Office 12, 14, 15 + + 4 + + + + SupportByVersion Office 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863671.aspx + + + + SupportByVersion Office 12, 14, 15 + + 0 + + + + SupportByVersion Office 12, 14, 15 + + 1 + + + + SupportByVersion Office 12, 14, 15 + + 2 + + + + SupportByVersion Office 12, 14, 15 + + 3 + + + + SupportByVersion Office 12, 14, 15 + + 4 + + + + SupportByVersion Office 11, 12, 14, 15 + + + + + SupportByVersion Office 11, 12, 14, 15 + + 0 + + + + SupportByVersion Office 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865257.aspx + + + + SupportByVersion Office 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 11, 12, 14, 15 + + 3 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860550.aspx + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + -2 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 4 + + + + SupportByVersion Office 14, 15 + + 5 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/jj227486.aspx + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 4 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 5 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 6 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/jj227187.aspx + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865458.aspx + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + -2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 4 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 5 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862442.aspx + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + -2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 3 + + + + DispatchInterface PictureEffect + SupportByVersion Office, 14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863789.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864645.aspx + + + + + SupportByVersion Office 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863360.aspx + + + + + SupportByVersion Office 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860898.aspx + + + + + SupportByVersion Office 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863402.aspx + + + + + SupportByVersion Office 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864650.aspx + + + + + DispatchInterface PickerFields + SupportByVersion Office, 14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862500.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersionAttribute Office, 14,15 + + + + + SupportByVersionAttribute Office, 14,15 + + + + + SupportByVersion Office 14, 15 + Get + + Int32 Index + + + + SupportByVersion Office 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862793.aspx + + + + + DispatchInterface Axes + SupportByVersion Office, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersionAttribute Office, 12,14,15 + + + + + SupportByVersionAttribute Office, 12,14,15 + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 14, 15 + Get + + + + + SupportByVersion Office 14, 15 + Get + + NetOffice.OfficeApi.Enums.XlAxisType Type + optional NetOffice.OfficeApi.Enums.XlAxisGroup AxisGroup + + + + SupportByVersion Office 14, 15 + Get + + NetOffice.OfficeApi.Enums.XlAxisType Type + + + + SupportByVersion Office 14, 15 + Get + Unknown COM Proxy + + + + + DispatchInterface IMsoChartArea + SupportByVersion Office, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + SupportByVersion Office 14, 15 + Get/Set + + + + + SupportByVersion Office 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 14, 15 + Get + + + + + DispatchInterface IMsoChartData + SupportByVersion Office, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 12, 14, 15 + + + + + + SupportByVersion Office 15 + + + + + + SupportByVersion Office 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 12, 14, 15 + Get + + + + + DispatchInterface CustomTaskPaneEvents + SupportByVersion Office, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + + + NetOffice.OfficeApi._CustomTaskPane CustomTaskPaneInst + + + + SupportByVersion Office 12, 14, 15 + + + NetOffice.OfficeApi._CustomTaskPane CustomTaskPaneInst + + + + DispatchInterface CustomXMLPrefixMappings + SupportByVersion Office, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862759.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863491.aspx + + string Prefix + string NamespaceURI + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861130.aspx + + string Prefix + + + + SupportByVersion Office 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861490.aspx + + string NamespaceURI + + + + SupportByVersionAttribute Office, 12,14,15 + + + + + SupportByVersionAttribute Office, 12,14,15 + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860342.aspx + Unknown COM Proxy + + + + + SupportByVersion Office 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862823.aspx + + + + + SupportByVersion Office 12, 14, 15 + Get + + object Index + + + + DispatchInterface SharedWorkspace + SupportByVersion Office, 11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862502.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862068.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862182.aspx + + optional object URL + optional object Name + + + + SupportByVersion Office 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862182.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862182.aspx + + optional object URL + + + + SupportByVersion Office 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862550.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861519.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863540.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861084.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863506.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863392.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865183.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863702.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862483.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861765.aspx + Unknown COM Proxy + + + + + SupportByVersion Office 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865214.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860257.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861389.aspx + + + + + SupportByVersion Office 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860917.aspx + + + + + DispatchInterface ICommandBarButtonEvents + SupportByVersion Office, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + NetOffice.OfficeApi.CommandBarButton Ctrl + bool CancelDefault + + + + DispatchInterface FileSearch + SupportByVersion Office, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + optional NetOffice.OfficeApi.Enums.MsoSortBy SortBy = 1 + optional NetOffice.OfficeApi.Enums.MsoSortOrder SortOrder = 1 + optional bool AlwaysAccurate = true + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + optional NetOffice.OfficeApi.Enums.MsoSortBy SortBy = 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + optional NetOffice.OfficeApi.Enums.MsoSortBy SortBy = 1 + optional NetOffice.OfficeApi.Enums.MsoSortOrder SortOrder = 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + + + + + DispatchInterface FoundFiles + SupportByVersion Office, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersionAttribute Office, 9,10,11,12,14,15 + + + + + SupportByVersionAttribute Office, 9,10,11,12,14,15 + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + Int32 Index + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + DispatchInterface Balloon + SupportByVersion Office, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Int32 Left + Int32 Top + Int32 Right + Int32 Bottom + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + DispatchInterface ShapeNode + SupportByVersion Office, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + CommandBar + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + Hidden stub .ctor + + + + registered ProgID + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_accName + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_accValue + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_accDescription + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_accRole + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_accState + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_accHelp + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_accKeyboardShortcut + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_accDefaultAction + + optional object varChild + + + + DispatchInterface CommandBar + SupportByVersion Office, 9,10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862548.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_accChild + Unknown COM Proxy + + object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + string pszHelpFile + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_accHelpTopic + + string pszHelpFile + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + string pszHelpFile + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Alias for get_accHelpTopic + + string pszHelpFile + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Int32 flagsSelect + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Int32 flagsSelect + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Int32 pxLeft + Int32 pyTop + Int32 pcxWidth + Int32 pcyHeight + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Int32 pxLeft + Int32 pyTop + Int32 pcxWidth + Int32 pcyHeight + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Int32 navDir + optional object varStart + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Int32 navDir + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + Int32 xLeft + Int32 yTop + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + optional object varChild + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862231.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864884.aspx + + optional object Type + optional object Id + optional object Tag + optional object Visible + optional object Recursive + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864884.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864884.aspx + + optional object Type + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864884.aspx + + optional object Type + optional object Id + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864884.aspx + + optional object Type + optional object Id + optional object Tag + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864884.aspx + + optional object Type + optional object Id + optional object Tag + optional object Visible + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863143.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865188.aspx + + optional object x + optional object y + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865188.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865188.aspx + + optional object x + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865497.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865230.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861889.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861500.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863298.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863643.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860792.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861533.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861194.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862362.aspx + Unknown COM Proxy + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863844.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862402.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861854.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860591.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864969.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864581.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863766.aspx + + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860615.aspx + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Office 14, 15 + Get + + + + + SupportByVersion Office 12, 14, 15 + + + + + SupportByVersion Office 12, 14, 15 + + 1 + + + + SupportByVersion Office 12, 14, 15 + + -4138 + + + + SupportByVersion Office 12, 14, 15 + + 4 + + + + SupportByVersion Office 12, 14, 15 + + 2 + + + + SupportByVersion Office 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863990.aspx + + + + SupportByVersion Office 12, 14, 15 + + -2 + + + + SupportByVersion Office 12, 14, 15 + + 1 + + + + SupportByVersion Office 12, 14, 15 + + 2 + + + + SupportByVersion Office 12, 14, 15 + + 3 + + + + SupportByVersion Office 12, 14, 15 + + 4 + + + + SupportByVersion Office 12, 14, 15 + + 5 + + + + SupportByVersion Office 12, 14, 15 + + 6 + + + + SupportByVersion Office 12, 14, 15 + + 7 + + + + SupportByVersion Office 12, 14, 15 + + 8 + + + + SupportByVersion Office 12, 14, 15 + + 9 + + + + SupportByVersion Office 12, 14, 15 + + 10 + + + + SupportByVersion Office 12, 14, 15 + + 11 + + + + SupportByVersion Office 12, 14, 15 + + 12 + + + + SupportByVersion Office 12, 14, 15 + + 13 + + + + SupportByVersion Office 12, 14, 15 + + 14 + + + + SupportByVersion Office 12, 14, 15 + + 15 + + + + SupportByVersion Office 12, 14, 15 + + 16 + + + + SupportByVersion Office 12, 14, 15 + + 17 + + + + SupportByVersion Office 12, 14, 15 + + 18 + + + + SupportByVersion Office 12, 14, 15 + + 19 + + + + SupportByVersion Office 12, 14, 15 + + 20 + + + + SupportByVersion Office 12, 14, 15 + + 21 + + + + SupportByVersion Office 12, 14, 15 + + 22 + + + + SupportByVersion Office 12, 14, 15 + + 23 + + + + SupportByVersion Office 12, 14, 15 + + 24 + + + + SupportByVersion Office 12, 14, 15 + + 25 + + + + SupportByVersion Office 12, 14, 15 + + 26 + + + + SupportByVersion Office 12, 14, 15 + + 27 + + + + SupportByVersion Office 12, 14, 15 + + 28 + + + + SupportByVersion Office 12, 14, 15 + + 29 + + + + SupportByVersion Office 12, 14, 15 + + 30 + + + + SupportByVersion Office 12, 14, 15 + + 31 + + + + SupportByVersion Office 12, 14, 15 + + 32 + + + + SupportByVersion Office 12, 14, 15 + + 33 + + + + SupportByVersion Office 12, 14, 15 + + 34 + + + + SupportByVersion Office 12, 14, 15 + + 35 + + + + SupportByVersion Office 12, 14, 15 + + 36 + + + + SupportByVersion Office 12, 14, 15 + + 37 + + + + SupportByVersion Office 12, 14, 15 + + 38 + + + + SupportByVersion Office 12, 14, 15 + + 39 + + + + SupportByVersion Office 12, 14, 15 + + 40 + + + + SupportByVersion Office 12, 14, 15 + + 41 + + + + SupportByVersion Office 12, 14, 15 + + 42 + + + + SupportByVersion Office 12, 14, 15 + + 43 + + + + SupportByVersion Office 12, 14, 15 + + 44 + + + + SupportByVersion Office 12, 14, 15 + + 45 + + + + SupportByVersion Office 12, 14, 15 + + 46 + + + + SupportByVersion Office 12, 14, 15 + + 47 + + + + SupportByVersion Office 12, 14, 15 + + 48 + + + + SupportByVersion Office 12, 14, 15 + + 49 + + + + SupportByVersion Office 12, 14, 15 + + 50 + + + + SupportByVersion Office 12, 14, 15 + + 51 + + + + SupportByVersion Office 12, 14, 15 + + 52 + + + + SupportByVersion Office 12, 14, 15 + + 53 + + + + SupportByVersion Office 12, 14, 15 + + 54 + + + + SupportByVersion Office 12, 14, 15 + + 55 + + + + SupportByVersion Office 12, 14, 15 + + 56 + + + + SupportByVersion Office 12, 14, 15 + + 57 + + + + SupportByVersion Office 12, 14, 15 + + 58 + + + + SupportByVersion Office 12, 14, 15 + + 59 + + + + SupportByVersion Office 12, 14, 15 + + 60 + + + + SupportByVersion Office 12, 14, 15 + + 61 + + + + SupportByVersion Office 12, 14, 15 + + 62 + + + + SupportByVersion Office 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863480.aspx + + + + SupportByVersion Office 11, 12, 14, 15 + + 0 + + + + SupportByVersion Office 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 3076 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 5124 + + + + SupportByVersion Office 10, 11, 12, 14, 15 + + 11273 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/jj227204.aspx + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/jj227974.aspx + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 4 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 5 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 6 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 11 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 12 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 13 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 18 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 19 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 22 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 23 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 24 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 25 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 26 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 31 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 32 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 100 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 101 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 102 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 103 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 104 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 105 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 106 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 107 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 108 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 109 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 110 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 111 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 112 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 113 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 114 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 115 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 116 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865258.aspx + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860913.aspx + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + -2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 4 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 5 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 6 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 7 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 8 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 9 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 10 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862125.aspx + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + -2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 4 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862244.aspx + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + -2 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Office 9, 10, 11, 12, 14, 15 + + 2 + + + diff --git a/plugin_outlook/static/openerp-outlook-plugin/packages/NetOffice.Core.Net35.1.7.2.0/lib/net35/VBIDEApi.dll b/plugin_outlook/static/openerp-outlook-plugin/packages/NetOffice.Core.Net35.1.7.2.0/lib/net35/VBIDEApi.dll new file mode 100644 index 00000000..8d9ffc29 Binary files /dev/null and b/plugin_outlook/static/openerp-outlook-plugin/packages/NetOffice.Core.Net35.1.7.2.0/lib/net35/VBIDEApi.dll differ diff --git a/plugin_outlook/static/openerp-outlook-plugin/packages/NetOffice.Core.Net35.1.7.2.0/lib/net35/VBIDEApi.xml b/plugin_outlook/static/openerp-outlook-plugin/packages/NetOffice.Core.Net35.1.7.2.0/lib/net35/VBIDEApi.xml new file mode 100644 index 00000000..b823aa6f --- /dev/null +++ b/plugin_outlook/static/openerp-outlook-plugin/packages/NetOffice.Core.Net35.1.7.2.0/lib/net35/VBIDEApi.xml @@ -0,0 +1,4150 @@ + + + + VBIDEApi + + + + + CoClass CodePanes + SupportByVersion VBIDE, 12,14,5.3 + + + + + DispatchInterface _CodePanes + SupportByVersion VBIDE, 12,14,5.3 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersionAttribute VBIDE, 12,14,5.3 + + + + + SupportByVersionAttribute VBIDE, 12,14,5.3 + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get/Set + + + + + SupportByVersion VBIDE 12, 14, 5.3 + + + object index + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of CodePanes + + + + + creates a new instance of CodePanes + + registered ProgID + + + + returns all running VBIDE.CodePanes objects from the running object table(ROT) + + an VBIDE.CodePanes array + + + + returns a running VBIDE.CodePanes object from the running object table(ROT). the method takes the first element from the table + + an VBIDE.CodePanes object or null + + + + returns a running VBIDE.CodePanes object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an VBIDE.CodePanes object or null + + + + creates active sink helper + + + + + CoClass Addins + SupportByVersion VBIDE, 12,14,5.3 + + + + + DispatchInterface _AddIns + SupportByVersion VBIDE, 12,14,5.3 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion VBIDE 12, 14, 5.3 + + + + + + SupportByVersionAttribute VBIDE, 12,14,5.3 + + + + + SupportByVersionAttribute VBIDE, 12,14,5.3 + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + Unknown COM Proxy + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + + + object index + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of Addins + + + + + creates a new instance of Addins + + registered ProgID + + + + returns all running VBIDE.Addins objects from the running object table(ROT) + + an VBIDE.Addins array + + + + returns a running VBIDE.Addins object from the running object table(ROT). the method takes the first element from the table + + an VBIDE.Addins object or null + + + + returns a running VBIDE.Addins object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an VBIDE.Addins object or null + + + + creates active sink helper + + + + + DispatchInterface _CodePane + SupportByVersion VBIDE, 12,14,5.3 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion VBIDE 12, 14, 5.3 + + + Int32 StartLine + Int32 StartColumn + Int32 EndLine + Int32 EndColumn + + + + SupportByVersion VBIDE 12, 14, 5.3 + + + Int32 StartLine + Int32 StartColumn + Int32 EndLine + Int32 EndColumn + + + + SupportByVersion VBIDE 12, 14, 5.3 + + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get/Set + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + DispatchInterface _Properties + SupportByVersion VBIDE, 12,14,5.3 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersionAttribute VBIDE, 12,14,5.3 + + + + + SupportByVersionAttribute VBIDE, 12,14,5.3 + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + Unknown COM Proxy + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + + + object index + + + + DispatchInterface _VBComponent + SupportByVersion VBIDE, 12,14,5.3 + + + + + DispatchInterface _VBComponent_Old + SupportByVersion VBIDE, 12,14,5.3 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion VBIDE 12, 14, 5.3 + + + string FileName + + + + SupportByVersion VBIDE 12, 14, 5.3 + + + + + + SupportByVersion VBIDE 12, 14, 5.3 + + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get/Set + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + Unknown COM Proxy + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + DispatchInterface _Components + SupportByVersion VBIDE, 12,14,5.3 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion VBIDE 12, 14, 5.3 + + + NetOffice.VBIDEApi.Component Component + + + + SupportByVersion VBIDE 12, 14, 5.3 + + + NetOffice.VBIDEApi.Enums.vbext_ComponentType ComponentType + + + + SupportByVersion VBIDE 12, 14, 5.3 + + + string FileName + + + + SupportByVersionAttribute VBIDE, 12,14,5.3 + + + + + SupportByVersionAttribute VBIDE, 12,14,5.3 + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + + + object index + + + + DispatchInterface _VBProject_Old + SupportByVersion VBIDE, 12,14,5.3 + + + + + DispatchInterface _ProjectTemplate + SupportByVersion VBIDE, 12,14,5.3 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get/Set + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get/Set + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get/Set + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get/Set + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + DispatchInterface Property + SupportByVersion VBIDE, 12,14,5.3 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get/Set + + object Index1 + optional object Index2 + optional object Index3 + optional object Index4 + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get/Set + + object Index1 + optional object Index2 + optional object Index3 + optional object Index4 + + + + SupportByVersion VBIDE 12, 14, 5.3 + Alias for get_IndexedValue + + object Index1 + optional object Index2 + optional object Index3 + optional object Index4 + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get/Set + + object Index1 + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get/Set + + object Index1 + + + + SupportByVersion VBIDE 12, 14, 5.3 + Alias for get_IndexedValue + + object Index1 + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get/Set + + object Index1 + optional object Index2 + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get/Set + + object Index1 + optional object Index2 + + + + SupportByVersion VBIDE 12, 14, 5.3 + Alias for get_IndexedValue + + object Index1 + optional object Index2 + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get/Set + + object Index1 + optional object Index2 + optional object Index3 + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get/Set + + object Index1 + optional object Index2 + optional object Index3 + + + + SupportByVersion VBIDE 12, 14, 5.3 + Alias for get_IndexedValue + + object Index1 + optional object Index2 + optional object Index3 + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get/Set + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get/Set + Unknown COM Proxy + + + + + DispatchInterface _Component + SupportByVersion VBIDE, 12,14,5.3 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get/Set + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get/Set + + + + + Interface _VBComponentsEvents + SupportByVersion VBIDE, 12,14,5.3 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + DispatchInterface AddIn + SupportByVersion VBIDE, 12,14,5.3 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get/Set + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get/Set + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get/Set + Unknown COM Proxy + + + + + DispatchInterface _Windows + SupportByVersion VBIDE, 12,14,5.3 + + + + + DispatchInterface _Windows_old + SupportByVersion VBIDE, 12,14,5.3 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersionAttribute VBIDE, 12,14,5.3 + + + + + SupportByVersionAttribute VBIDE, 12,14,5.3 + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + + + object index + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion VBIDE 12, 14, 5.3 + + + NetOffice.VBIDEApi.AddIn AddInInst + string ProgId + string Caption + string GuidPosition + object DocObj + + + + CoClass VBComponent + SupportByVersion VBIDE, 12,14,5.3 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of VBComponent + + + + + creates a new instance of VBComponent + + registered ProgID + + + + returns all running VBIDE.VBComponent objects from the running object table(ROT) + + an VBIDE.VBComponent array + + + + returns a running VBIDE.VBComponent object from the running object table(ROT). the method takes the first element from the table + + an VBIDE.VBComponent object or null + + + + returns a running VBIDE.VBComponent object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an VBIDE.VBComponent object or null + + + + creates active sink helper + + + + + DispatchInterface _CodeModule + SupportByVersion VBIDE, 12,14,5.3 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + Int32 StartLine + Int32 Count + + + + SupportByVersion VBIDE 12, 14, 5.3 + Alias for get_Lines + + Int32 StartLine + Int32 Count + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + string ProcName + NetOffice.VBIDEApi.Enums.vbext_ProcKind ProcKind + + + + SupportByVersion VBIDE 12, 14, 5.3 + Alias for get_ProcStartLine + + string ProcName + NetOffice.VBIDEApi.Enums.vbext_ProcKind ProcKind + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + string ProcName + NetOffice.VBIDEApi.Enums.vbext_ProcKind ProcKind + + + + SupportByVersion VBIDE 12, 14, 5.3 + Alias for get_ProcCountLines + + string ProcName + NetOffice.VBIDEApi.Enums.vbext_ProcKind ProcKind + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + string ProcName + NetOffice.VBIDEApi.Enums.vbext_ProcKind ProcKind + + + + SupportByVersion VBIDE 12, 14, 5.3 + Alias for get_ProcBodyLine + + string ProcName + NetOffice.VBIDEApi.Enums.vbext_ProcKind ProcKind + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + Int32 Line + NetOffice.VBIDEApi.Enums.vbext_ProcKind ProcKind + + + + SupportByVersion VBIDE 12, 14, 5.3 + Alias for get_ProcOfLine + + Int32 Line + NetOffice.VBIDEApi.Enums.vbext_ProcKind ProcKind + + + + SupportByVersion VBIDE 12, 14, 5.3 + + + string String + + + + SupportByVersion VBIDE 12, 14, 5.3 + + + string FileName + + + + SupportByVersion VBIDE 12, 14, 5.3 + + + Int32 Line + string String + + + + SupportByVersion VBIDE 12, 14, 5.3 + + + Int32 StartLine + optional Int32 Count = 1 + + + + SupportByVersion VBIDE 12, 14, 5.3 + + + Int32 StartLine + + + + SupportByVersion VBIDE 12, 14, 5.3 + + + Int32 Line + string String + + + + SupportByVersion VBIDE 12, 14, 5.3 + + + string EventName + string ObjectName + + + + SupportByVersion VBIDE 12, 14, 5.3 + + + string Target + Int32 StartLine + Int32 StartColumn + Int32 EndLine + Int32 EndColumn + optional bool WholeWord = false + optional bool MatchCase = false + optional bool PatternSearch = false + + + + SupportByVersion VBIDE 12, 14, 5.3 + + + string Target + Int32 StartLine + Int32 StartColumn + Int32 EndLine + Int32 EndColumn + + + + SupportByVersion VBIDE 12, 14, 5.3 + + + string Target + Int32 StartLine + Int32 StartColumn + Int32 EndLine + Int32 EndColumn + optional bool WholeWord = false + + + + SupportByVersion VBIDE 12, 14, 5.3 + + + string Target + Int32 StartLine + Int32 StartColumn + Int32 EndLine + Int32 EndColumn + optional bool WholeWord = false + optional bool MatchCase = false + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get/Set + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + Interface _VBProjectsEvents + SupportByVersion VBIDE, 12,14,5.3 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion VBIDE 12, 14, 5.3 + + + + + SupportByVersion VBIDE 12, 14, 5.3 + + 0 + + + + SupportByVersion VBIDE 12, 14, 5.3 + + 1 + + + + SupportByVersion VBIDE 12, 14, 5.3 + + 2 + + + + SupportByVersion VBIDE 12, 14, 5.3 + + 3 + + + + CoClass Components + SupportByVersion VBIDE, 12,14,5.3 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of Components + + + + + creates a new instance of Components + + registered ProgID + + + + returns all running VBIDE.Components objects from the running object table(ROT) + + an VBIDE.Components array + + + + returns a running VBIDE.Components object from the running object table(ROT). the method takes the first element from the table + + an VBIDE.Components object or null + + + + returns a running VBIDE.Components object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an VBIDE.Components object or null + + + + creates active sink helper + + + + + CoClass ReferencesEvents + SupportByVersion VBIDE, 12,14,5.3 + + + + + Interface _ReferencesEvents + SupportByVersion VBIDE, 12,14,5.3 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of ReferencesEvents + + + + + creates a new instance of ReferencesEvents + + registered ProgID + + + + returns all running VBIDE.ReferencesEvents objects from the running object table(ROT) + + an VBIDE.ReferencesEvents array + + + + returns a running VBIDE.ReferencesEvents object from the running object table(ROT). the method takes the first element from the table + + an VBIDE.ReferencesEvents object or null + + + + returns a running VBIDE.ReferencesEvents object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an VBIDE.ReferencesEvents object or null + + + + creates active sink helper + + + + + SupportByVersion VBIDE, 12,14,5.3 + + + + + SupportByVersion VBIDE 12 14 5.3 + + + + + SupportByVersion VBIDE, 12,14,5.3 + + + + + SupportByVersion VBIDE 12 14 5.3 + + + + + DispatchInterface _VBProject + SupportByVersion VBIDE, 12,14,5.3 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion VBIDE 12, 14, 5.3 + + + string FileName + + + + SupportByVersion VBIDE 12, 14, 5.3 + + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get/Set + + + + + DispatchInterface _dispVBProjectsEvents + SupportByVersion VBIDE, 12,14,5.3 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion VBIDE 12, 14, 5.3 + + + NetOffice.VBIDEApi.VBProject VBProject + + + + SupportByVersion VBIDE 12, 14, 5.3 + + + NetOffice.VBIDEApi.VBProject VBProject + + + + SupportByVersion VBIDE 12, 14, 5.3 + + + NetOffice.VBIDEApi.VBProject VBProject + string OldName + + + + SupportByVersion VBIDE 12, 14, 5.3 + + + NetOffice.VBIDEApi.VBProject VBProject + + + + DispatchInterface Events + SupportByVersion VBIDE, 12,14,5.3 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + NetOffice.VBIDEApi.VBProject VBProject + + + + SupportByVersion VBIDE 12, 14, 5.3 + Alias for get_ReferencesEvents + + NetOffice.VBIDEApi.VBProject VBProject + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + object CommandBarControl + + + + SupportByVersion VBIDE 12, 14, 5.3 + Alias for get_CommandBarEvents + + object CommandBarControl + + + + CoClass Properties + SupportByVersion VBIDE, 12,14,5.3 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of Properties + + + + + creates a new instance of Properties + + registered ProgID + + + + returns all running VBIDE.Properties objects from the running object table(ROT) + + an VBIDE.Properties array + + + + returns a running VBIDE.Properties object from the running object table(ROT). the method takes the first element from the table + + an VBIDE.Properties object or null + + + + returns a running VBIDE.Properties object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an VBIDE.Properties object or null + + + + creates active sink helper + + + + + DispatchInterface _VBProjects + SupportByVersion VBIDE, 12,14,5.3 + + + + + DispatchInterface _VBProjects_Old + SupportByVersion VBIDE, 12,14,5.3 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersionAttribute VBIDE, 12,14,5.3 + + + + + SupportByVersionAttribute VBIDE, 12,14,5.3 + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + + + object index + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion VBIDE 12, 14, 5.3 + + + NetOffice.VBIDEApi.Enums.vbext_ProjectType Type + + + + SupportByVersion VBIDE 12, 14, 5.3 + + + NetOffice.VBIDEApi.VBProject lpc + + + + SupportByVersion VBIDE 12, 14, 5.3 + + + string bstrPath + + + + CoClass Windows + SupportByVersion VBIDE, 12,14,5.3 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of Windows + + + + + creates a new instance of Windows + + registered ProgID + + + + returns all running VBIDE.Windows objects from the running object table(ROT) + + an VBIDE.Windows array + + + + returns a running VBIDE.Windows object from the running object table(ROT). the method takes the first element from the table + + an VBIDE.Windows object or null + + + + returns a running VBIDE.Windows object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an VBIDE.Windows object or null + + + + creates active sink helper + + + + + DispatchInterface _References + SupportByVersion VBIDE, 12,14,5.3 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion VBIDE 12, 14, 5.3 + + + string Guid + Int32 Major + Int32 Minor + + + + SupportByVersion VBIDE 12, 14, 5.3 + + + string FileName + + + + SupportByVersion VBIDE 12, 14, 5.3 + + + NetOffice.VBIDEApi.Reference Reference + + + + SupportByVersionAttribute VBIDE, 12,14,5.3 + + + + + SupportByVersionAttribute VBIDE, 12,14,5.3 + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + + + object index + + + + DispatchInterface _dispVBComponentsEvents + SupportByVersion VBIDE, 12,14,5.3 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion VBIDE 12, 14, 5.3 + + + NetOffice.VBIDEApi.VBComponent VBComponent + + + + SupportByVersion VBIDE 12, 14, 5.3 + + + NetOffice.VBIDEApi.VBComponent VBComponent + + + + SupportByVersion VBIDE 12, 14, 5.3 + + + NetOffice.VBIDEApi.VBComponent VBComponent + string OldName + + + + SupportByVersion VBIDE 12, 14, 5.3 + + + NetOffice.VBIDEApi.VBComponent VBComponent + + + + SupportByVersion VBIDE 12, 14, 5.3 + + + NetOffice.VBIDEApi.VBComponent VBComponent + + + + SupportByVersion VBIDE 12, 14, 5.3 + + + NetOffice.VBIDEApi.VBComponent VBComponent + + + + DispatchInterface Window + SupportByVersion VBIDE, 12,14,5.3 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion VBIDE 12, 14, 5.3 + + + + + + SupportByVersion VBIDE 12, 14, 5.3 + + + + + + SupportByVersion VBIDE 12, 14, 5.3 + + + NetOffice.VBIDEApi.Enums.vbext_WindowType eKind + + + + SupportByVersion VBIDE 12, 14, 5.3 + + + + + + SupportByVersion VBIDE 12, 14, 5.3 + + + Int32 lWindowHandle + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get/Set + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get/Set + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get/Set + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get/Set + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get/Set + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get/Set + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + + + + + SupportByVersion VBIDE 12, 14, 5.3 + + 0 + + + + SupportByVersion VBIDE 12, 14, 5.3 + + 1 + + + + SupportByVersion VBIDE 12, 14, 5.3 + + + + + SupportByVersion VBIDE 12, 14, 5.3 + + 100 + + + + SupportByVersion VBIDE 12, 14, 5.3 + + 101 + + + + CoClass Component + SupportByVersion VBIDE, 12,14,5.3 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of Component + + + + + creates a new instance of Component + + registered ProgID + + + + returns all running VBIDE.Component objects from the running object table(ROT) + + an VBIDE.Component array + + + + returns a running VBIDE.Component object from the running object table(ROT). the method takes the first element from the table + + an VBIDE.Component object or null + + + + returns a running VBIDE.Component object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an VBIDE.Component object or null + + + + creates active sink helper + + + + + DispatchInterface SelectedComponents + SupportByVersion VBIDE, 12,14,5.3 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersionAttribute VBIDE, 12,14,5.3 + + + + + SupportByVersionAttribute VBIDE, 12,14,5.3 + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + + + Int32 index + + + + Interface _CommandBarControlEvents + SupportByVersion VBIDE, 12,14,5.3 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + DispatchInterface Reference + SupportByVersion VBIDE, 12,14,5.3 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + DispatchInterface _VBComponents_Old + SupportByVersion VBIDE, 12,14,5.3 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion VBIDE 12, 14, 5.3 + + + NetOffice.VBIDEApi.VBComponent VBComponent + + + + SupportByVersion VBIDE 12, 14, 5.3 + + + NetOffice.VBIDEApi.Enums.vbext_ComponentType ComponentType + + + + SupportByVersion VBIDE 12, 14, 5.3 + + + string FileName + + + + SupportByVersionAttribute VBIDE, 12,14,5.3 + + + + + SupportByVersionAttribute VBIDE, 12,14,5.3 + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + + + object index + + + + DispatchInterface _VBComponents + SupportByVersion VBIDE, 12,14,5.3 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion VBIDE 12, 14, 5.3 + + + string ProgId + + + + SupportByVersion VBIDE 12, 14, 5.3 + + + optional Int32 index = 0 + + + + SupportByVersion VBIDE 12, 14, 5.3 + + + + + + DispatchInterface _LinkedWindows + SupportByVersion VBIDE, 12,14,5.3 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion VBIDE 12, 14, 5.3 + + + NetOffice.VBIDEApi.Window Window + + + + SupportByVersion VBIDE 12, 14, 5.3 + + + NetOffice.VBIDEApi.Window Window + + + + SupportByVersionAttribute VBIDE, 12,14,5.3 + + + + + SupportByVersionAttribute VBIDE, 12,14,5.3 + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + + + object index + + + + DispatchInterface VBE + SupportByVersion VBIDE, 12,14,5.3 + + + + + DispatchInterface Application + SupportByVersion VBIDE, 12,14,5.3 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get/Set + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get/Set + + + + + SupportByVersion VBIDE 12, 14, 5.3 + Get + + + + + SupportByVersion VBIDE 12, 14, 5.3 + + + + + SupportByVersion VBIDE 12, 14, 5.3 + + 0 + + + + SupportByVersion VBIDE 12, 14, 5.3 + + 1 + + + + SupportByVersion VBIDE 12, 14, 5.3 + + 2 + + + + SupportByVersion VBIDE 12, 14, 5.3 + + + + + SupportByVersion VBIDE 12, 14, 5.3 + + 0 + + + + SupportByVersion VBIDE 12, 14, 5.3 + + 1 + + + + SupportByVersion VBIDE 12, 14, 5.3 + + 2 + + + + SupportByVersion VBIDE 12, 14, 5.3 + + 3 + + + + SupportByVersion VBIDE 12, 14, 5.3 + + 4 + + + + SupportByVersion VBIDE 12, 14, 5.3 + + 5 + + + + SupportByVersion VBIDE 12, 14, 5.3 + + 6 + + + + SupportByVersion VBIDE 12, 14, 5.3 + + 7 + + + + SupportByVersion VBIDE 12, 14, 5.3 + + 8 + + + + SupportByVersion VBIDE 12, 14, 5.3 + + 9 + + + + SupportByVersion VBIDE 12, 14, 5.3 + + 10 + + + + SupportByVersion VBIDE 12, 14, 5.3 + + 11 + + + + SupportByVersion VBIDE 12, 14, 5.3 + + 12 + + + + CoClass CodeModule + SupportByVersion VBIDE, 12,14,5.3 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of CodeModule + + + + + creates a new instance of CodeModule + + registered ProgID + + + + returns all running VBIDE.CodeModule objects from the running object table(ROT) + + an VBIDE.CodeModule array + + + + returns a running VBIDE.CodeModule object from the running object table(ROT). the method takes the first element from the table + + an VBIDE.CodeModule object or null + + + + returns a running VBIDE.CodeModule object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an VBIDE.CodeModule object or null + + + + creates active sink helper + + + + + CoClass ProjectTemplate + SupportByVersion VBIDE, 12,14,5.3 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of ProjectTemplate + + + + + creates a new instance of ProjectTemplate + + registered ProgID + + + + returns all running VBIDE.ProjectTemplate objects from the running object table(ROT) + + an VBIDE.ProjectTemplate array + + + + returns a running VBIDE.ProjectTemplate object from the running object table(ROT). the method takes the first element from the table + + an VBIDE.ProjectTemplate object or null + + + + returns a running VBIDE.ProjectTemplate object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an VBIDE.ProjectTemplate object or null + + + + creates active sink helper + + + + + CoClass CommandBarEvents + SupportByVersion VBIDE, 12,14,5.3 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of CommandBarEvents + + + + + creates a new instance of CommandBarEvents + + registered ProgID + + + + returns all running VBIDE.CommandBarEvents objects from the running object table(ROT) + + an VBIDE.CommandBarEvents array + + + + returns a running VBIDE.CommandBarEvents object from the running object table(ROT). the method takes the first element from the table + + an VBIDE.CommandBarEvents object or null + + + + returns a running VBIDE.CommandBarEvents object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an VBIDE.CommandBarEvents object or null + + + + creates active sink helper + + + + + SupportByVersion VBIDE, 12,14,5.3 + + + + + SupportByVersion VBIDE 12 14 5.3 + + + + + SupportByVersion VBIDE 12, 14, 5.3 + + + + + SupportByVersion VBIDE 12, 14, 5.3 + + 0 + + + + SupportByVersion VBIDE 12, 14, 5.3 + + 1 + + + + SupportByVersion VBIDE 12, 14, 5.3 + + + + + SupportByVersion VBIDE 12, 14, 5.3 + + 1 + + + + SupportByVersion VBIDE 12, 14, 5.3 + + 2 + + + + SupportByVersion VBIDE 12, 14, 5.3 + + 3 + + + + SupportByVersion VBIDE 12, 14, 5.3 + + 11 + + + + SupportByVersion VBIDE 12, 14, 5.3 + + 100 + + + + SupportByVersion VBIDE 12, 14, 5.3 + + + + + SupportByVersion VBIDE 12, 14, 5.3 + + 0 + + + + SupportByVersion VBIDE 12, 14, 5.3 + + 1 + + + + SupportByVersion VBIDE 12, 14, 5.3 + + 2 + + + + SupportByVersion VBIDE 12, 14, 5.3 + + 3 + + + + SupportByVersion VBIDE 12, 14, 5.3 + + 4 + + + + SupportByVersion VBIDE 12, 14, 5.3 + + 5 + + + + SupportByVersion VBIDE 12, 14, 5.3 + + 6 + + + + SupportByVersion VBIDE 12, 14, 5.3 + + 7 + + + + SupportByVersion VBIDE 12, 14, 5.3 + + 8 + + + + SupportByVersion VBIDE 12, 14, 5.3 + + 9 + + + + SupportByVersion VBIDE 12, 14, 5.3 + + 10 + + + + SupportByVersion VBIDE 12, 14, 5.3 + + 11 + + + + SupportByVersion VBIDE 12, 14, 5.3 + + 12 + + + + SupportByVersion VBIDE 12, 14, 5.3 + + 15 + + + + CoClass VBComponents + SupportByVersion VBIDE, 12,14,5.3 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of VBComponents + + + + + creates a new instance of VBComponents + + registered ProgID + + + + returns all running VBIDE.VBComponents objects from the running object table(ROT) + + an VBIDE.VBComponents array + + + + returns a running VBIDE.VBComponents object from the running object table(ROT). the method takes the first element from the table + + an VBIDE.VBComponents object or null + + + + returns a running VBIDE.VBComponents object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an VBIDE.VBComponents object or null + + + + creates active sink helper + + + + + CoClass VBProject + SupportByVersion VBIDE, 12,14,5.3 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of VBProject + + + + + creates a new instance of VBProject + + registered ProgID + + + + returns all running VBIDE.VBProject objects from the running object table(ROT) + + an VBIDE.VBProject array + + + + returns a running VBIDE.VBProject object from the running object table(ROT). the method takes the first element from the table + + an VBIDE.VBProject object or null + + + + returns a running VBIDE.VBProject object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an VBIDE.VBProject object or null + + + + creates active sink helper + + + + + necessary factory info, used from NetOffice.Factory while Initialize() + + + + + CoClass CodePane + SupportByVersion VBIDE, 12,14,5.3 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of CodePane + + + + + creates a new instance of CodePane + + registered ProgID + + + + returns all running VBIDE.CodePane objects from the running object table(ROT) + + an VBIDE.CodePane array + + + + returns a running VBIDE.CodePane object from the running object table(ROT). the method takes the first element from the table + + an VBIDE.CodePane object or null + + + + returns a running VBIDE.CodePane object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an VBIDE.CodePane object or null + + + + creates active sink helper + + + + + SupportByVersion VBIDE 12, 14, 5.3 + + + + + SupportByVersion VBIDE 12, 14, 5.3 + + 0 + + + + SupportByVersion VBIDE 12, 14, 5.3 + + 1 + + + + SupportByVersion VBIDE 12, 14, 5.3 + + 2 + + + + CoClass References + SupportByVersion VBIDE, 12,14,5.3 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of References + + + + + creates a new instance of References + + registered ProgID + + + + returns all running VBIDE.References objects from the running object table(ROT) + + an VBIDE.References array + + + + returns a running VBIDE.References object from the running object table(ROT). the method takes the first element from the table + + an VBIDE.References object or null + + + + returns a running VBIDE.References object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an VBIDE.References object or null + + + + creates active sink helper + + + + + SupportByVersion VBIDE, 12,14,5.3 + + + + + SupportByVersion VBIDE 12 14 5.3 + + + + + SupportByVersion VBIDE, 12,14,5.3 + + + + + SupportByVersion VBIDE 12 14 5.3 + + + + + CoClass VBProjects + SupportByVersion VBIDE, 12,14,5.3 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of VBProjects + + + + + creates a new instance of VBProjects + + registered ProgID + + + + returns all running VBIDE.VBProjects objects from the running object table(ROT) + + an VBIDE.VBProjects array + + + + returns a running VBIDE.VBProjects object from the running object table(ROT). the method takes the first element from the table + + an VBIDE.VBProjects object or null + + + + returns a running VBIDE.VBProjects object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an VBIDE.VBProjects object or null + + + + creates active sink helper + + + + + CoClass LinkedWindows + SupportByVersion VBIDE, 12,14,5.3 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of LinkedWindows + + + + + creates a new instance of LinkedWindows + + registered ProgID + + + + returns all running VBIDE.LinkedWindows objects from the running object table(ROT) + + an VBIDE.LinkedWindows array + + + + returns a running VBIDE.LinkedWindows object from the running object table(ROT). the method takes the first element from the table + + an VBIDE.LinkedWindows object or null + + + + returns a running VBIDE.LinkedWindows object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an VBIDE.LinkedWindows object or null + + + + creates active sink helper + + + + + SupportByVersion VBIDE 12, 14, 5.3 + + + + + SupportByVersion VBIDE 12, 14, 5.3 + + 0 + + + + SupportByVersion VBIDE 12, 14, 5.3 + + 1 + + + diff --git a/plugin_outlook/static/openerp-outlook-plugin/packages/NetOffice.Core.Net35.1.7.2.0/tools/install.ps1 b/plugin_outlook/static/openerp-outlook-plugin/packages/NetOffice.Core.Net35.1.7.2.0/tools/install.ps1 new file mode 100644 index 00000000..c800e493 --- /dev/null +++ b/plugin_outlook/static/openerp-outlook-plugin/packages/NetOffice.Core.Net35.1.7.2.0/tools/install.ps1 @@ -0,0 +1,19 @@ +param($installPath, $toolsPath, $package, $project) + +$ref = $project.Object.References.Item("NetOffice") +if ($ref -and $ref.EmbedInteropTypes) +{ + $ref.EmbedInteropTypes = $false +} + +$ref = $project.Object.References.Item("OfficeApi") +if ($ref -and $ref.EmbedInteropTypes) +{ + $ref.EmbedInteropTypes = $false +} + +$ref = $project.Object.References.Item("VBIDEApi") +if ($ref -and $ref.EmbedInteropTypes) +{ + $ref.EmbedInteropTypes = $false +} diff --git a/plugin_outlook/static/openerp-outlook-plugin/packages/NetOffice.Outlook.Net35.1.7.2.0/NetOffice.Outlook.Net35.1.7.2.0.nupkg b/plugin_outlook/static/openerp-outlook-plugin/packages/NetOffice.Outlook.Net35.1.7.2.0/NetOffice.Outlook.Net35.1.7.2.0.nupkg new file mode 100644 index 00000000..675ffd35 Binary files /dev/null and b/plugin_outlook/static/openerp-outlook-plugin/packages/NetOffice.Outlook.Net35.1.7.2.0/NetOffice.Outlook.Net35.1.7.2.0.nupkg differ diff --git a/plugin_outlook/static/openerp-outlook-plugin/packages/NetOffice.Outlook.Net35.1.7.2.0/lib/net35/OutlookApi.dll b/plugin_outlook/static/openerp-outlook-plugin/packages/NetOffice.Outlook.Net35.1.7.2.0/lib/net35/OutlookApi.dll new file mode 100644 index 00000000..e9d0f1d5 Binary files /dev/null and b/plugin_outlook/static/openerp-outlook-plugin/packages/NetOffice.Outlook.Net35.1.7.2.0/lib/net35/OutlookApi.dll differ diff --git a/plugin_outlook/static/openerp-outlook-plugin/packages/NetOffice.Outlook.Net35.1.7.2.0/lib/net35/OutlookApi.xml b/plugin_outlook/static/openerp-outlook-plugin/packages/NetOffice.Outlook.Net35.1.7.2.0/lib/net35/OutlookApi.xml new file mode 100644 index 00000000..c2889507 --- /dev/null +++ b/plugin_outlook/static/openerp-outlook-plugin/packages/NetOffice.Outlook.Net35.1.7.2.0/lib/net35/OutlookApi.xml @@ -0,0 +1,52082 @@ + + + + OutlookApi + + + + + CoClass CardView + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869150.aspx + + + + + DispatchInterface _CardView + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863041.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863578.aspx + + string Name + optional NetOffice.OutlookApi.Enums.OlViewSaveOption SaveOption + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863578.aspx + + string Name + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867650.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864421.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866781.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869012.aspx + + DateTime Date + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867651.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869879.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862743.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861281.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865039.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868442.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869530.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866937.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865870.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864001.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868292.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862760.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865804.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869591.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869273.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865796.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866427.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866268.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863276.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867479.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862435.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of CardView + + + + + creates a new instance of CardView + + registered ProgID + + + + returns all running Outlook.CardView objects from the running object table(ROT) + + an Outlook.CardView array + + + + returns a running Outlook.CardView object from the running object table(ROT). the method takes the first element from the table + + an Outlook.CardView object or null + + + + returns a running Outlook.CardView object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.CardView object or null + + + + creates active sink helper + + + + + CoClass NavigationPane + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868696.aspx + + + + + DispatchInterface _NavigationPane + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860426.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862768.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860385.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867096.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860366.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869527.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870070.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870024.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of NavigationPane + + + + + creates a new instance of NavigationPane + + registered ProgID + + + + returns all running Outlook.NavigationPane objects from the running object table(ROT) + + an Outlook.NavigationPane array + + + + returns a running Outlook.NavigationPane object from the running object table(ROT). the method takes the first element from the table + + an Outlook.NavigationPane object or null + + + + returns a running Outlook.NavigationPane object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.NavigationPane object or null + + + + creates active sink helper + + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865854.aspx + + + + CoClass NavigationGroup + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868424.aspx + + + + + DispatchInterface _NavigationGroup + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868953.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864753.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867521.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869086.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868027.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860644.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868518.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868707.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of NavigationGroup + + + + + creates a new instance of NavigationGroup + + registered ProgID + + + + returns all running Outlook.NavigationGroup objects from the running object table(ROT) + + an Outlook.NavigationGroup array + + + + returns a running Outlook.NavigationGroup object from the running object table(ROT). the method takes the first element from the table + + an Outlook.NavigationGroup object or null + + + + returns a running Outlook.NavigationGroup object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.NavigationGroup object or null + + + + creates active sink helper + + + + + CoClass ColumnFormat + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868507.aspx + + + + + DispatchInterface _ColumnFormat + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861578.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865986.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866037.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867118.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869187.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861329.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869231.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869173.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867267.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of ColumnFormat + + + + + creates a new instance of ColumnFormat + + registered ProgID + + + + returns all running Outlook.ColumnFormat objects from the running object table(ROT) + + an Outlook.ColumnFormat array + + + + returns a running Outlook.ColumnFormat object from the running object table(ROT). the method takes the first element from the table + + an Outlook.ColumnFormat object or null + + + + returns a running Outlook.ColumnFormat object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.ColumnFormat object or null + + + + creates active sink helper + + + + + CoClass Categories + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863110.aspx + + + + + DispatchInterface _Categories + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870031.aspx + + string Name + optional object Color + optional object ShortcutKey + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870031.aspx + + string Name + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870031.aspx + + string Name + optional object Color + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867529.aspx + + object Index + + + + SupportByVersionAttribute Outlook, 12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersionAttribute Outlook, 12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866595.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863943.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870042.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867908.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868716.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + + + object Index + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of Categories + + + + + creates a new instance of Categories + + registered ProgID + + + + returns all running Outlook.Categories objects from the running object table(ROT) + + an Outlook.Categories array + + + + returns a running Outlook.Categories object from the running object table(ROT). the method takes the first element from the table + + an Outlook.Categories object or null + + + + returns a running Outlook.Categories object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.Categories object or null + + + + creates active sink helper + + + + + CoClass Accounts + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862476.aspx + + + + + DispatchInterface _Accounts + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersionAttribute Outlook, 12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersionAttribute Outlook, 12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862188.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868276.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865996.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868178.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868785.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + + + object Index + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of Accounts + + + + + creates a new instance of Accounts + + registered ProgID + + + + returns all running Outlook.Accounts objects from the running object table(ROT) + + an Outlook.Accounts array + + + + returns a running Outlook.Accounts object from the running object table(ROT). the method takes the first element from the table + + an Outlook.Accounts object or null + + + + returns a running Outlook.Accounts object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.Accounts object or null + + + + creates active sink helper + + + + + SupportByVersion Outlook, 14,15 + + + + + SupportByVersion Outlook 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867339.aspx + + + + CoClass Columns + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865825.aspx + + + + + DispatchInterface _Columns + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869293.aspx + + string Name + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869961.aspx + + object Index + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869703.aspx + + + + + SupportByVersionAttribute Outlook, 12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersionAttribute Outlook, 12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869039.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868870.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868044.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866983.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865629.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + + + object Index + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of Columns + + + + + creates a new instance of Columns + + registered ProgID + + + + returns all running Outlook.Columns objects from the running object table(ROT) + + an Outlook.Columns array + + + + returns a running Outlook.Columns object from the running object table(ROT). the method takes the first element from the table + + an Outlook.Columns object or null + + + + returns a running Outlook.Columns object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.Columns object or null + + + + creates active sink helper + + + + + CoClass Row + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860643.aspx + + + + + DispatchInterface _Row + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862432.aspx + + object Index + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862154.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861263.aspx + + object Index + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867171.aspx + + object Index + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869944.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865648.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868426.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870148.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 12, 14, 15 + + + object Index + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of Row + + + + + creates a new instance of Row + + registered ProgID + + + + returns all running Outlook.Row objects from the running object table(ROT) + + an Outlook.Row array + + + + returns a running Outlook.Row object from the running object table(ROT). the method takes the first element from the table + + an Outlook.Row object or null + + + + returns a running Outlook.Row object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.Row object or null + + + + creates active sink helper + + + + + CoClass Rules + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869469.aspx + + + + + DispatchInterface _Rules + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867254.aspx + + string Name + NetOffice.OutlookApi.Enums.OlRuleType RuleType + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869380.aspx + + optional object ShowProgress + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869380.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866251.aspx + + object Index + + + + SupportByVersionAttribute Outlook, 12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersionAttribute Outlook, 12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863977.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863932.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868987.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864474.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868589.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867110.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + + + object Index + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of Rules + + + + + creates a new instance of Rules + + registered ProgID + + + + returns all running Outlook.Rules objects from the running object table(ROT) + + an Outlook.Rules array + + + + returns a running Outlook.Rules object from the running object table(ROT). the method takes the first element from the table + + an Outlook.Rules object or null + + + + returns a running Outlook.Rules object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.Rules object or null + + + + creates active sink helper + + + + + CoClass SyncObject + SupportByVersion Outlook, 9,10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860720.aspx + + + + + DispatchInterface _SyncObject + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863925.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869169.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861938.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860311.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868017.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868226.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861283.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of SyncObject + + + + + creates a new instance of SyncObject + + registered ProgID + + + + returns all running Outlook.SyncObject objects from the running object table(ROT) + + an Outlook.SyncObject array + + + + returns a running Outlook.SyncObject object from the running object table(ROT). the method takes the first element from the table + + an Outlook.SyncObject object or null + + + + returns a running Outlook.SyncObject object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.SyncObject object or null + + + + creates active sink helper + + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862356.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865672.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862157.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866270.aspx + + + + DispatchInterface _SimpleItems + SupportByVersion Outlook, 14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersionAttribute Outlook, 14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersionAttribute Outlook, 14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersion Outlook 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870071.aspx + + + + + SupportByVersion Outlook 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867138.aspx + + + + + SupportByVersion Outlook 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865067.aspx + + + + + SupportByVersion Outlook 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860930.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862514.aspx + + + + + SupportByVersion Outlook 14, 15 + + + object Index + + + + DispatchInterface _Account + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865376.aspx + + string ID + + + + SupportByVersion Outlook 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866938.aspx + + string EntryID + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864412.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867826.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867717.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867345.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867094.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862209.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863657.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864252.aspx + + + + + SupportByVersion Outlook 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869397.aspx + + + + + SupportByVersion Outlook 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869561.aspx + + + + + SupportByVersion Outlook 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862173.aspx + + + + + SupportByVersion Outlook 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861633.aspx + + + + + SupportByVersion Outlook 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863996.aspx + + + + + SupportByVersion Outlook 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870028.aspx + + + + + SupportByVersion Outlook 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865582.aspx + + + + + SupportByVersion Outlook 15 + Get + Unknown COM Proxy + + + + + DispatchInterface OlkControl + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864202.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868851.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866215.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869884.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869903.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867721.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861611.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869868.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868997.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862110.aspx + + + + + DispatchInterface _Views + SupportByVersion Outlook, 10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867129.aspx + + string Name + NetOffice.OutlookApi.Enums.OlViewType ViewType + optional NetOffice.OutlookApi.Enums.OlViewSaveOption SaveOption + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867129.aspx + + string Name + NetOffice.OutlookApi.Enums.OlViewType ViewType + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866478.aspx + + object Index + + + + SupportByVersionAttribute Outlook, 10,11,12,14,15 + + + + + SupportByVersionAttribute Outlook, 10,11,12,14,15 + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860639.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863053.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866029.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863665.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869121.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + + + object Index + + + + DispatchInterface View + SupportByVersion Outlook, 10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864185.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868581.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869531.aspx + + string Name + optional NetOffice.OutlookApi.Enums.OlViewSaveOption SaveOption + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869531.aspx + + string Name + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866246.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870119.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869831.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865380.aspx + + DateTime Date + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867288.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864020.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863283.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867871.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869098.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869933.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866745.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869365.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868058.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869439.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868419.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868066.aspx + + + + + DispatchInterface _TaskItem + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866737.aspx + + NetOffice.OutlookApi.Enums.OlInspectorClose SaveMode + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861293.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860752.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870179.aspx + + optional object Modal + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870179.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869122.aspx + + NetOffice.OutlookApi.MAPIFolder DestFldr + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868557.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865391.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866391.aspx + + string Path + optional object Type + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866391.aspx + + string Path + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869880.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865261.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868520.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861821.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869679.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861921.aspx + + NetOffice.OutlookApi.Enums.OlTaskResponse Response + object fNoUI + object fAdditionalTextDialog + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865077.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861855.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866405.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869911.aspx + + + + + SupportByVersion Outlook 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868456.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860368.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867901.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869895.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868229.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867412.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867459.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863029.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866589.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868958.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865307.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869337.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869090.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861048.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868464.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865096.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862732.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869101.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869323.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869631.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863884.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863883.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865396.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861553.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866002.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868662.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868034.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868219.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868028.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869310.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869328.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869220.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868893.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862970.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861626.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863346.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869104.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864399.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860710.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865052.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867488.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867105.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863624.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860382.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869082.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863636.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862363.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864248.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862717.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867691.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861294.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866749.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861022.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870130.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867918.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867644.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868314.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863693.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865993.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868922.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868417.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860985.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869500.aspx + + + + + SupportByVersion Outlook 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861844.aspx + + + + + SupportByVersion Outlook 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864993.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870020.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866415.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869432.aspx + + + + + SupportByVersion Outlook 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866072.aspx + + + + + SupportByVersion Outlook 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870193.aspx + + + + + DispatchInterface PropertyPageSite + SupportByVersion Outlook, 9,10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869159.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869275.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861558.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864195.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861002.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862479.aspx + Unknown COM Proxy + + + + + DispatchInterface _DocumentItem + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863948.aspx + + NetOffice.OutlookApi.Enums.OlInspectorClose SaveMode + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869325.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868761.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867175.aspx + + optional object Modal + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867175.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863275.aspx + + NetOffice.OutlookApi.MAPIFolder DestFldr + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869327.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860954.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868749.aspx + + string Path + optional object Type + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868749.aspx + + string Path + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868521.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861277.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866053.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863982.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864435.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865091.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869331.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865633.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865024.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862753.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860303.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864710.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864466.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867186.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864229.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869385.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866987.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862976.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870090.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865838.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869391.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863328.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868032.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865647.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866894.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869450.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867397.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868470.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868861.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868921.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869396.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863326.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869515.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865849.aspx + + + + + SupportByVersion Outlook 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866474.aspx + + + + + SupportByVersion Outlook 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861877.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868189.aspx + + + + + DispatchInterface _Folders + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862204.aspx + + string Name + optional object Type + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862204.aspx + + string Name + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866591.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866260.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865587.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867609.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864707.aspx + + Int32 Index + + + + SupportByVersionAttribute Outlook, 9,10,11,12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersionAttribute Outlook, 9,10,11,12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861570.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868312.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862152.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864789.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868593.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + + object Index + + + + SupportByVersion Outlook 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869914.aspx + + + + SupportByVersion Outlook 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 12, 14, 15 + + 3 + + + + SupportByVersion Outlook 12, 14, 15 + + 4 + + + + SupportByVersion Outlook 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868036.aspx + + + + SupportByVersion Outlook 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868572.aspx + + + + SupportByVersion Outlook 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868661.aspx + + + + SupportByVersion Outlook 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864705.aspx + + + + SupportByVersion Outlook 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 12, 14, 15 + + 3 + + + + SupportByVersion Outlook 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861270.aspx + + + + SupportByVersion Outlook 11, 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 11, 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 11, 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869131.aspx + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868658.aspx + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 4 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 5 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863329.aspx + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 4 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 5 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 7 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 8 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 15 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 16 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 17 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 18 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 20 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 21 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 26 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 53 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 54 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 55 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 56 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 57 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 28 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 29 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 30 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 32 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 33 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 34 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 35 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 36 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 37 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 38 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 39 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 40 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 41 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 42 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 43 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 44 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 45 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 46 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 47 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 48 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 49 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 50 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 51 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 52 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 60 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 61 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 62 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 63 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 64 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 65 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 66 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 67 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 68 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 69 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 70 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 71 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 72 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 73 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 74 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 75 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 76 + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + + 77 + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + + 78 + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + + 79 + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + + 80 + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + + 98 + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + + 99 + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + + 100 + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + + 101 + + + + SupportByVersion Outlook 11, 12, 14, 15 + + 102 + + + + SupportByVersion Outlook 11, 12, 14, 15 + + 103 + + + + SupportByVersion Outlook 12, 14, 15 + + 104 + + + + SupportByVersion Outlook 12, 14, 15 + + 105 + + + + SupportByVersion Outlook 12, 14, 15 + + 106 + + + + SupportByVersion Outlook 12, 14, 15 + + 107 + + + + SupportByVersion Outlook 12, 14, 15 + + 108 + + + + SupportByVersion Outlook 12, 14, 15 + + 109 + + + + SupportByVersion Outlook 12, 14, 15 + + 110 + + + + SupportByVersion Outlook 12, 14, 15 + + 111 + + + + SupportByVersion Outlook 12, 14, 15 + + 112 + + + + SupportByVersion Outlook 12, 14, 15 + + 113 + + + + SupportByVersion Outlook 12, 14, 15 + + 114 + + + + SupportByVersion Outlook 12, 14, 15 + + 115 + + + + SupportByVersion Outlook 12, 14, 15 + + 116 + + + + SupportByVersion Outlook 12, 14, 15 + + 117 + + + + SupportByVersion Outlook 12, 14, 15 + + 118 + + + + SupportByVersion Outlook 12, 14, 15 + + 119 + + + + SupportByVersion Outlook 12, 14, 15 + + 120 + + + + SupportByVersion Outlook 12, 14, 15 + + 121 + + + + SupportByVersion Outlook 12, 14, 15 + + 122 + + + + SupportByVersion Outlook 12, 14, 15 + + 123 + + + + SupportByVersion Outlook 12, 14, 15 + + 124 + + + + SupportByVersion Outlook 12, 14, 15 + + 125 + + + + SupportByVersion Outlook 12, 14, 15 + + 126 + + + + SupportByVersion Outlook 12, 14, 15 + + 127 + + + + SupportByVersion Outlook 12, 14, 15 + + 128 + + + + SupportByVersion Outlook 12, 14, 15 + + 129 + + + + SupportByVersion Outlook 12, 14, 15 + + 130 + + + + SupportByVersion Outlook 12, 14, 15 + + 131 + + + + SupportByVersion Outlook 12, 14, 15 + + 132 + + + + SupportByVersion Outlook 12, 14, 15 + + 133 + + + + SupportByVersion Outlook 12, 14, 15 + + 134 + + + + SupportByVersion Outlook 12, 14, 15 + + 135 + + + + SupportByVersion Outlook 12, 14, 15 + + 136 + + + + SupportByVersion Outlook 12, 14, 15 + + 137 + + + + SupportByVersion Outlook 12, 14, 15 + + 138 + + + + SupportByVersion Outlook 12, 14, 15 + + 139 + + + + SupportByVersion Outlook 12, 14, 15 + + 140 + + + + SupportByVersion Outlook 12, 14, 15 + + 141 + + + + SupportByVersion Outlook 12, 14, 15 + + 142 + + + + SupportByVersion Outlook 12, 14, 15 + + 144 + + + + SupportByVersion Outlook 12, 14, 15 + + 145 + + + + SupportByVersion Outlook 12, 14, 15 + + 146 + + + + SupportByVersion Outlook 12, 14, 15 + + 147 + + + + SupportByVersion Outlook 12, 14, 15 + + 148 + + + + SupportByVersion Outlook 12, 14, 15 + + 149 + + + + SupportByVersion Outlook 12, 14, 15 + + 150 + + + + SupportByVersion Outlook 12, 14, 15 + + 151 + + + + SupportByVersion Outlook 12, 14, 15 + + 152 + + + + SupportByVersion Outlook 12, 14, 15 + + 153 + + + + SupportByVersion Outlook 12, 14, 15 + + 154 + + + + SupportByVersion Outlook 12, 14, 15 + + 155 + + + + SupportByVersion Outlook 12, 14, 15 + + 156 + + + + SupportByVersion Outlook 12, 14, 15 + + 157 + + + + SupportByVersion Outlook 12, 14, 15 + + 158 + + + + SupportByVersion Outlook 12, 14, 15 + + 159 + + + + SupportByVersion Outlook 12, 14, 15 + + 160 + + + + SupportByVersion Outlook 12, 14, 15 + + 161 + + + + SupportByVersion Outlook 12, 14, 15 + + 162 + + + + SupportByVersion Outlook 12, 14, 15 + + 163 + + + + SupportByVersion Outlook 12, 14, 15 + + 164 + + + + SupportByVersion Outlook 12, 14, 15 + + 165 + + + + SupportByVersion Outlook 12, 14, 15 + + 166 + + + + SupportByVersion Outlook 12, 14, 15 + + 167 + + + + SupportByVersion Outlook 12, 14, 15 + + 168 + + + + SupportByVersion Outlook 12, 14, 15 + + 169 + + + + SupportByVersion Outlook 12, 14, 15 + + 170 + + + + SupportByVersion Outlook 12, 14, 15 + + 171 + + + + SupportByVersion Outlook 12, 14, 15 + + 172 + + + + SupportByVersion Outlook 12, 14, 15 + + 173 + + + + SupportByVersion Outlook 12, 14, 15 + + 174 + + + + SupportByVersion Outlook 12, 14, 15 + + 175 + + + + SupportByVersion Outlook 14, 15 + + 176 + + + + SupportByVersion Outlook 14, 15 + + 177 + + + + SupportByVersion Outlook 14, 15 + + 178 + + + + SupportByVersion Outlook 14, 15 + + 179 + + + + SupportByVersion Outlook 14, 15 + + 180 + + + + SupportByVersion Outlook 14, 15 + + 181 + + + + SupportByVersion Outlook 14, 15 + + 182 + + + + SupportByVersion Outlook 15 + + 183 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/jj715740.aspx + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 9 + + 2 + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867450.aspx + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 4 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866185.aspx + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 2 + + + + necessary factory info, used from NetOffice.Factory while Initialize() + + + + + CoClass MobileItem + SupportByVersion Outlook, 14,15 + + + + + DispatchInterface _MobileItem + SupportByVersion Outlook, 14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 14, 15 + + + NetOffice.OutlookApi.Enums.OlInspectorClose SaveMode + + + + SupportByVersion Outlook 14, 15 + + + + + + SupportByVersion Outlook 14, 15 + + + + + + SupportByVersion Outlook 14, 15 + + + optional object Modal + + + + SupportByVersion Outlook 14, 15 + + + + + + SupportByVersion Outlook 14, 15 + + + NetOffice.OutlookApi.MAPIFolder DestFldr + + + + SupportByVersion Outlook 14, 15 + + + + + + SupportByVersion Outlook 14, 15 + + + + + + SupportByVersion Outlook 14, 15 + + + string Path + optional object Type + + + + SupportByVersion Outlook 14, 15 + + + string Path + + + + SupportByVersion Outlook 14, 15 + + + + + + SupportByVersion Outlook 14, 15 + + + + + + SupportByVersion Outlook 14, 15 + + + bool ForceSend + + + + SupportByVersion Outlook 14, 15 + + + + + + SupportByVersion Outlook 14, 15 + Get + + + + + SupportByVersion Outlook 14, 15 + Get + + + + + SupportByVersion Outlook 14, 15 + Get + + + + + SupportByVersion Outlook 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Outlook 14, 15 + Get + + + + + SupportByVersion Outlook 14, 15 + Get + + + + + SupportByVersion Outlook 14, 15 + Get/Set + + + + + SupportByVersion Outlook 14, 15 + Get/Set + + + + + SupportByVersion Outlook 14, 15 + Get/Set + + + + + SupportByVersion Outlook 14, 15 + Get/Set + + + + + SupportByVersion Outlook 14, 15 + Get + + + + + SupportByVersion Outlook 14, 15 + Get + + + + + SupportByVersion Outlook 14, 15 + Get + + + + + SupportByVersion Outlook 14, 15 + Get + + + + + SupportByVersion Outlook 14, 15 + Get + + + + + SupportByVersion Outlook 14, 15 + Get + + + + + SupportByVersion Outlook 14, 15 + Get/Set + + + + + SupportByVersion Outlook 14, 15 + Get + + + + + SupportByVersion Outlook 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Outlook 14, 15 + Get/Set + + + + + SupportByVersion Outlook 14, 15 + Get/Set + + + + + SupportByVersion Outlook 14, 15 + Get/Set + + + + + SupportByVersion Outlook 14, 15 + Get + + + + + SupportByVersion Outlook 14, 15 + Get + + + + + SupportByVersion Outlook 14, 15 + Get + + + + + SupportByVersion Outlook 14, 15 + Get/Set + + + + + SupportByVersion Outlook 14, 15 + Get + + + + + SupportByVersion Outlook 14, 15 + Get/Set + + + + + SupportByVersion Outlook 14, 15 + Get/Set + + + + + SupportByVersion Outlook 14, 15 + Get + + + + + SupportByVersion Outlook 14, 15 + Get/Set + + + + + SupportByVersion Outlook 14, 15 + Get + + + + + SupportByVersion Outlook 14, 15 + Get/Set + + + + + SupportByVersion Outlook 14, 15 + Get + + + + + SupportByVersion Outlook 14, 15 + Get/Set + + + + + SupportByVersion Outlook 14, 15 + Get + + + + + SupportByVersion Outlook 14, 15 + Get + + + + + SupportByVersion Outlook 14, 15 + Get + + + + + SupportByVersion Outlook 14, 15 + Get + + + + + SupportByVersion Outlook 14, 15 + Get + + + + + SupportByVersion Outlook 14, 15 + Get + + + + + SupportByVersion Outlook 14, 15 + Get/Set + + + + + SupportByVersion Outlook 14, 15 + Get + + + + + SupportByVersion Outlook 14, 15 + Get + + + + + SupportByVersion Outlook 14, 15 + Get + + + + + SupportByVersion Outlook 14, 15 + Get + + + + + SupportByVersion Outlook 14, 15 + Get + + + + + SupportByVersion Outlook 14, 15 + Get + + + + + SupportByVersion Outlook 14, 15 + Get + + + + + SupportByVersion Outlook 14, 15 + Get + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of MobileItem + + + + + creates a new instance of MobileItem + + registered ProgID + + + + returns all running Outlook.MobileItem objects from the running object table(ROT) + + an Outlook.MobileItem array + + + + returns a running Outlook.MobileItem object from the running object table(ROT). the method takes the first element from the table + + an Outlook.MobileItem object or null + + + + returns a running Outlook.MobileItem object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.MobileItem object or null + + + + creates active sink helper + + + + + SupportByVersion Outlook, 10,11,12,14,15 + + + + + SupportByVersion Outlook 10 11 12 14 15 + + + + + SupportByVersion Outlook, 10,11,12,14,15 + + + + + SupportByVersion Outlook 10 11 12 14 15 + + + + + SupportByVersion Outlook, 10,11,12,14,15 + + + + + SupportByVersion Outlook 10 11 12 14 15 + + + + + SupportByVersion Outlook, 10,11,12,14,15 + + + + + SupportByVersion Outlook 10 11 12 14 15 + + + + + SupportByVersion Outlook, 10,11,12,14,15 + + + + + SupportByVersion Outlook 10 11 12 14 15 + + + + + SupportByVersion Outlook, 10,11,12,14,15 + + + + + SupportByVersion Outlook 10 11 12 14 15 + + + + + SupportByVersion Outlook, 10,11,12,14,15 + + + + + SupportByVersion Outlook 10 11 12 14 15 + + + + + SupportByVersion Outlook, 10,11,12,14,15 + + + + + SupportByVersion Outlook 10 11 12 14 15 + + + + + SupportByVersion Outlook, 10,11,12,14,15 + + + + + SupportByVersion Outlook 10 11 12 14 15 + + + + + SupportByVersion Outlook, 10,11,12,14,15 + + + + + SupportByVersion Outlook 10 11 12 14 15 + + + + + SupportByVersion Outlook, 10,11,12,14,15 + + + + + SupportByVersion Outlook 10 11 12 14 15 + + + + + SupportByVersion Outlook, 10,11,12,14,15 + + + + + SupportByVersion Outlook 10 11 12 14 15 + + + + + SupportByVersion Outlook, 10,11,12,14,15 + + + + + SupportByVersion Outlook 10 11 12 14 15 + + + + + SupportByVersion Outlook, 10,11,12,14,15 + + + + + SupportByVersion Outlook 10 11 12 14 15 + + + + + SupportByVersion Outlook, 10,11,12,14,15 + + + + + SupportByVersion Outlook 10 11 12 14 15 + + + + + SupportByVersion Outlook, 10,11,12,14,15 + + + + + SupportByVersion Outlook 10 11 12 14 15 + + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + + + + SupportByVersion Outlook, 14,15 + + + + + SupportByVersion Outlook 14 15 + + + + + SupportByVersion Outlook, 14,15 + + + + + SupportByVersion Outlook 14 15 + + + + + SupportByVersion Outlook, 15 + + + + + SupportByVersion Outlook 15 + + + + + CoClass TimelineView + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870107.aspx + + + + + DispatchInterface _TimelineView + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867810.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861237.aspx + + string Name + optional NetOffice.OutlookApi.Enums.OlViewSaveOption SaveOption + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861237.aspx + + string Name + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869284.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869235.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870141.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868042.aspx + + DateTime Date + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868218.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869678.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868185.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869632.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866225.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862113.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868910.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868907.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866897.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865983.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863363.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865322.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862447.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867124.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863025.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866015.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868976.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868758.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866200.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868528.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863661.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867112.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865344.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of TimelineView + + + + + creates a new instance of TimelineView + + registered ProgID + + + + returns all running Outlook.TimelineView objects from the running object table(ROT) + + an Outlook.TimelineView array + + + + returns a running Outlook.TimelineView object from the running object table(ROT). the method takes the first element from the table + + an Outlook.TimelineView object or null + + + + returns a running Outlook.TimelineView object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.TimelineView object or null + + + + creates active sink helper + + + + + CoClass ViewFields + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862477.aspx + + + + + DispatchInterface _ViewFields + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860939.aspx + + string PropertyName + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868425.aspx + + string PropertyName + object Index + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862973.aspx + + object Index + + + + SupportByVersionAttribute Outlook, 12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersionAttribute Outlook, 12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867376.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867716.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864424.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863879.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868485.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + + + object Index + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of ViewFields + + + + + creates a new instance of ViewFields + + registered ProgID + + + + returns all running Outlook.ViewFields objects from the running object table(ROT) + + an Outlook.ViewFields array + + + + returns a running Outlook.ViewFields object from the running object table(ROT). the method takes the first element from the table + + an Outlook.ViewFields object or null + + + + returns a running Outlook.ViewFields object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.ViewFields object or null + + + + creates active sink helper + + + + + CoClass SharingItem + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865852.aspx + + + + + DispatchInterface _SharingItem + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868837.aspx + + NetOffice.OutlookApi.Enums.OlInspectorClose SaveMode + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863576.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868013.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869878.aspx + + optional object Modal + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869878.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868344.aspx + + NetOffice.OutlookApi.MAPIFolder DestFldr + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862175.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870189.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868595.aspx + + string Path + optional object Type + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868595.aspx + + string Path + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867626.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869892.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866247.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867636.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869716.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868960.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864696.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865078.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868177.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870086.aspx + + NetOffice.OutlookApi.ContactItem contact + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869504.aspx + + NetOffice.OutlookApi.Enums.OlMarkInterval MarkInterval + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863068.aspx + + + + + SupportByVersion Outlook 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862206.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866740.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870098.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860450.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866780.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869702.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869113.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868206.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861278.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869049.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862675.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865845.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870120.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866769.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870135.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864749.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867868.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869875.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863285.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869263.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868561.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868482.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868428.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869059.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868373.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869975.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869232.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870030.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868898.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868802.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861816.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863735.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860661.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868247.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861618.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869172.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865056.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861250.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864211.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863292.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868592.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869190.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869556.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868499.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868422.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866410.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870027.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869203.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869137.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866768.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870096.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867168.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863012.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868514.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870195.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869106.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870185.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864721.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867146.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869031.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869602.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865087.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868267.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863368.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869116.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866221.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867426.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866746.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866196.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868093.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863984.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863699.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868432.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866468.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865780.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869124.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868260.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860937.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866967.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864470.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868779.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867835.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864756.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864016.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869557.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868173.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863895.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870149.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869822.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869351.aspx + + + + + SupportByVersion Outlook 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869971.aspx + + + + + SupportByVersion Outlook 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861593.aspx + + + + + SupportByVersion Outlook 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868962.aspx + + + + + SupportByVersion Outlook 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866210.aspx + + + + + SupportByVersion Outlook 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862713.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of SharingItem + + + + + creates a new instance of SharingItem + + registered ProgID + + + + returns all running Outlook.SharingItem objects from the running object table(ROT) + + an Outlook.SharingItem array + + + + returns a running Outlook.SharingItem object from the running object table(ROT). the method takes the first element from the table + + an Outlook.SharingItem object or null + + + + returns a running Outlook.SharingItem object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.SharingItem object or null + + + + creates active sink helper + + + + + SupportByVersion Outlook, 10,11,12,14,15 + + + + + SupportByVersion Outlook 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868717.aspx + + + + SupportByVersion Outlook, 10,11,12,14,15 + + + + + SupportByVersion Outlook 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866203.aspx + + + + SupportByVersion Outlook, 10,11,12,14,15 + + + + + SupportByVersion Outlook 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870103.aspx + + + + SupportByVersion Outlook, 10,11,12,14,15 + + + + + SupportByVersion Outlook 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868764.aspx + + + + SupportByVersion Outlook, 10,11,12,14,15 + + + + + SupportByVersion Outlook 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860972.aspx + + + + SupportByVersion Outlook, 10,11,12,14,15 + + + + + SupportByVersion Outlook 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866954.aspx + + + + SupportByVersion Outlook, 10,11,12,14,15 + + + + + SupportByVersion Outlook 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862783.aspx + + + + SupportByVersion Outlook, 10,11,12,14,15 + + + + + SupportByVersion Outlook 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865602.aspx + + + + SupportByVersion Outlook, 10,11,12,14,15 + + + + + SupportByVersion Outlook 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861545.aspx + + + + SupportByVersion Outlook, 10,11,12,14,15 + + + + + SupportByVersion Outlook 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861581.aspx + + + + SupportByVersion Outlook, 10,11,12,14,15 + + + + + SupportByVersion Outlook 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862385.aspx + + + + SupportByVersion Outlook, 10,11,12,14,15 + + + + + SupportByVersion Outlook 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870019.aspx + + + + SupportByVersion Outlook, 10,11,12,14,15 + + + + + SupportByVersion Outlook 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868778.aspx + + + + SupportByVersion Outlook, 10,11,12,14,15 + + + + + SupportByVersion Outlook 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867235.aspx + + + + SupportByVersion Outlook, 10,11,12,14,15 + + + + + SupportByVersion Outlook 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869748.aspx + + + + SupportByVersion Outlook, 10,11,12,14,15 + + + + + SupportByVersion Outlook 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865674.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869590.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867273.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869627.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868931.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867309.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868719.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863605.aspx + + + + SupportByVersion Outlook, 14,15 + + + + + SupportByVersion Outlook 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863722.aspx + + + + SupportByVersion Outlook, 14,15 + + + + + SupportByVersion Outlook 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868438.aspx + + + + SupportByVersion Outlook, 15 + + + + + SupportByVersion Outlook 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/jj228066.aspx + + + + CoClass ExchangeDistributionList + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862682.aspx + + + + + DispatchInterface _ExchangeDistributionList + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869867.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869569.aspx + + optional object HWnd + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869569.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868720.aspx + + DateTime Start + Int32 MinPerChar + optional object CompleteFormat + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868720.aspx + + DateTime Start + Int32 MinPerChar + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863058.aspx + + optional object MakePermanent + optional object Refresh + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863058.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863058.aspx + + optional object MakePermanent + + + + SupportByVersion Outlook 12, 14, 15 + + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869769.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868347.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869506.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869428.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869746.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869842.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869431.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864183.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867847.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866786.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868105.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869657.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862195.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + Unknown COM Proxy + + + + + SupportByVersion Outlook 12, 14, 15 + Get + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863619.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869520.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864700.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865847.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868232.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867840.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869982.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of ExchangeDistributionList + + + + + creates a new instance of ExchangeDistributionList + + registered ProgID + + + + returns all running Outlook.ExchangeDistributionList objects from the running object table(ROT) + + an Outlook.ExchangeDistributionList array + + + + returns a running Outlook.ExchangeDistributionList object from the running object table(ROT). the method takes the first element from the table + + an Outlook.ExchangeDistributionList object or null + + + + returns a running Outlook.ExchangeDistributionList object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.ExchangeDistributionList object or null + + + + creates active sink helper + + + + + CoClass SendRuleAction + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864764.aspx + + + + + DispatchInterface _SendRuleAction + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861571.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868102.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860964.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866032.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868877.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860663.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865369.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of SendRuleAction + + + + + creates a new instance of SendRuleAction + + registered ProgID + + + + returns all running Outlook.SendRuleAction objects from the running object table(ROT) + + an Outlook.SendRuleAction array + + + + returns a running Outlook.SendRuleAction object from the running object table(ROT). the method takes the first element from the table + + an Outlook.SendRuleAction object or null + + + + returns a running Outlook.SendRuleAction object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.SendRuleAction object or null + + + + creates active sink helper + + + + + CoClass OlkSenderPhoto + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860658.aspx + + + + + DispatchInterface _OlkSenderPhoto + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869302.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868103.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866041.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867304.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861612.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of OlkSenderPhoto + + + + + creates a new instance of OlkSenderPhoto + + registered ProgID + + + + returns all running Outlook.OlkSenderPhoto objects from the running object table(ROT) + + an Outlook.OlkSenderPhoto array + + + + returns a running Outlook.OlkSenderPhoto object from the running object table(ROT). the method takes the first element from the table + + an Outlook.OlkSenderPhoto object or null + + + + returns a running Outlook.OlkSenderPhoto object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.OlkSenderPhoto object or null + + + + creates active sink helper + + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860412.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864769.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867671.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867570.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867149.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868334.aspx + + + + DispatchInterface _BusinessCardView + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864472.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868061.aspx + + string Name + optional NetOffice.OutlookApi.Enums.OlViewSaveOption SaveOption + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868061.aspx + + string Name + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861046.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868479.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868180.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861269.aspx + + DateTime Date + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863880.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866725.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861806.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864385.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864752.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865801.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861585.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869392.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868583.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868565.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869419.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864783.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866720.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867107.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860748.aspx + + + + + DispatchInterface _NotesModule + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860687.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865031.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860635.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864263.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868279.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867875.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861567.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869929.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867710.aspx + + + + + DispatchInterface _FromRssFeedRuleCondition + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862667.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864467.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866451.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863412.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861588.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868256.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869928.aspx + + + + + DispatchInterface _OlkComboBox + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865877.aspx + + Int32 Index + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860314.aspx + + Int32 Index + string Item + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864463.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870157.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868871.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869673.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867336.aspx + + string ItemText + optional object Index + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867336.aspx + + string ItemText + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863944.aspx + + Int32 Index + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860405.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868375.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862519.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868605.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869935.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864765.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866738.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869183.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866388.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865809.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866594.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866248.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868948.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867356.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861321.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867316.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860367.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864250.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863608.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865617.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864429.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866485.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861941.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860434.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869908.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863881.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865337.aspx + + + + + DispatchInterface _DDocSiteControl + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + + + + + DispatchInterface _TaskRequestItem + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868925.aspx + + NetOffice.OutlookApi.Enums.OlInspectorClose SaveMode + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867898.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860459.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860958.aspx + + optional object Modal + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860958.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868064.aspx + + NetOffice.OutlookApi.MAPIFolder DestFldr + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869535.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861288.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866912.aspx + + string Path + optional object Type + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866912.aspx + + string Path + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869736.aspx + + bool AddToTaskList + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866898.aspx + + + + + SupportByVersion Outlook 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860957.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866962.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868951.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868257.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863959.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869825.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861859.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869490.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861313.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861306.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863446.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869412.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868447.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867515.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868249.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868328.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861275.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869512.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862253.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860657.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865044.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869581.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869070.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862383.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865347.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866263.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862966.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863951.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864245.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862965.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863911.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865869.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869473.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869266.aspx + + + + + SupportByVersion Outlook 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862090.aspx + + + + + SupportByVersion Outlook 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868421.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868602.aspx + + + + + SupportByVersion Outlook 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867855.aspx + + + + + SupportByVersion Outlook 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868992.aspx + + + + + DispatchInterface FormDescription + SupportByVersion Outlook, 9,10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869054.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862176.aspx + + NetOffice.OutlookApi.Enums.OlFormRegistry Registry + optional object Folder + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862176.aspx + + NetOffice.OutlookApi.Enums.OlFormRegistry Registry + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863101.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862997.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863584.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869862.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868440.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867270.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865072.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867347.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862769.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861009.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862728.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868007.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865022.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869770.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864708.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869572.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866213.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865281.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868315.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870138.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866910.aspx + + + + + DispatchInterface _AppointmentItem + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865790.aspx + + NetOffice.OutlookApi.Enums.OlInspectorClose SaveMode + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867845.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865001.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862445.aspx + + optional object Modal + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862445.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862723.aspx + + NetOffice.OutlookApi.MAPIFolder DestFldr + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867133.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861616.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862464.aspx + + string Path + optional object Type + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862464.aspx + + string Path + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868401.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865607.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868441.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860630.aspx + + NetOffice.OutlookApi.Enums.OlMeetingResponse Response + optional object fNoUI + optional object fAdditionalTextDialog + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860630.aspx + + NetOffice.OutlookApi.Enums.OlMeetingResponse Response + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860630.aspx + + NetOffice.OutlookApi.Enums.OlMeetingResponse Response + optional object fNoUI + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866462.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865395.aspx + + + + + SupportByVersion Outlook 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866004.aspx + + + + + SupportByVersion Outlook 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864992.aspx + + NetOffice.OutlookApi.MAPIFolder DestinationFolder + NetOffice.OutlookApi.Enums.OlAppointmentCopyOptions CopyOptions + + + + SupportByVersion Outlook 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869019.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868316.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867410.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870192.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865579.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867540.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864741.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870015.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860934.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866419.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866904.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861249.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869456.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869247.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867625.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865018.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866243.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866456.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866443.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869701.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864295.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869899.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862964.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862501.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868568.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862106.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866459.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865311.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862706.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869238.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864207.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863611.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869805.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869166.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867833.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868833.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869205.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860334.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862207.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864787.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869470.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869379.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860690.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863953.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865300.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869594.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869193.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867639.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868096.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868423.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867297.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861915.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864785.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860927.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867106.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865856.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869228.aspx + + + + + SupportByVersion Outlook 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869948.aspx + + + + + SupportByVersion Outlook 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869303.aspx + + + + + SupportByVersion Outlook 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861927.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860714.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868952.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863645.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870178.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867523.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869028.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864401.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868231.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863273.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867623.aspx + + + + + SupportByVersion Outlook 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866047.aspx + + + + + SupportByVersion Outlook 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861303.aspx + + + + + DispatchInterface AddressLists + SupportByVersion Outlook, 9,10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868743.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersionAttribute Outlook, 9,10,11,12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersionAttribute Outlook, 9,10,11,12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870169.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865628.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865783.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866446.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868505.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + + object Index + + + + SupportByVersion Outlook 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868261.aspx + + + + SupportByVersion Outlook 14, 15 + + 0 + + + + SupportByVersion Outlook 14, 15 + + 1 + + + + SupportByVersion Outlook 14, 15 + + 2 + + + + SupportByVersion Outlook 14, 15 + + 3 + + + + SupportByVersion Outlook 14, 15 + + 4 + + + + SupportByVersion Outlook 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864186.aspx + + + + SupportByVersion Outlook 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 12, 14, 15 + + 3 + + + + SupportByVersion Outlook 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867827.aspx + + + + SupportByVersion Outlook 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 12, 14, 15 + + 3 + + + + SupportByVersion Outlook 12, 14, 15 + + 4 + + + + SupportByVersion Outlook 12, 14, 15 + + 5 + + + + SupportByVersion Outlook 12, 14, 15 + + 6 + + + + SupportByVersion Outlook 12, 14, 15 + + 7 + + + + SupportByVersion Outlook 12, 14, 15 + + 8 + + + + SupportByVersion Outlook 12, 14, 15 + + 9 + + + + SupportByVersion Outlook 12, 14, 15 + + 10 + + + + SupportByVersion Outlook 12, 14, 15 + + 11 + + + + SupportByVersion Outlook 12, 14, 15 + + 12 + + + + SupportByVersion Outlook 12, 14, 15 + + 13 + + + + SupportByVersion Outlook 12, 14, 15 + + 14 + + + + SupportByVersion Outlook 12, 14, 15 + + 15 + + + + SupportByVersion Outlook 12, 14, 15 + + 16 + + + + SupportByVersion Outlook 12, 14, 15 + + 17 + + + + SupportByVersion Outlook 12, 14, 15 + + 18 + + + + SupportByVersion Outlook 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861325.aspx + + + + SupportByVersion Outlook 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 14, 15 + + 2 + + + + SupportByVersion Outlook 14, 15 + + 3 + + + + SupportByVersion Outlook 15 + + 4 + + + + SupportByVersion Outlook 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867475.aspx + + + + SupportByVersion Outlook 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866722.aspx + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869828.aspx + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Outlook 11, 12, 14, 15 + + 4 + + + + SupportByVersion Outlook 12, 14, 15 + + 5 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865653.aspx + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864234.aspx + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Outlook 15 + + 4 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868040.aspx + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 2 + + + + CoClass BusinessCardView + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867224.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of BusinessCardView + + + + + creates a new instance of BusinessCardView + + registered ProgID + + + + returns all running Outlook.BusinessCardView objects from the running object table(ROT) + + an Outlook.BusinessCardView array + + + + returns a running Outlook.BusinessCardView object from the running object table(ROT). the method takes the first element from the table + + an Outlook.BusinessCardView object or null + + + + returns a running Outlook.BusinessCardView object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.BusinessCardView object or null + + + + creates active sink helper + + + + + CoClass AutoFormatRules + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866587.aspx + + + + + DispatchInterface _AutoFormatRules + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862430.aspx + + string Name + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870110.aspx + + string Name + object Index + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867685.aspx + + object Index + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867642.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868745.aspx + + + + + SupportByVersionAttribute Outlook, 12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersionAttribute Outlook, 12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869607.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860757.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866447.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866056.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865600.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + + + object Index + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of AutoFormatRules + + + + + creates a new instance of AutoFormatRules + + registered ProgID + + + + returns all running Outlook.AutoFormatRules objects from the running object table(ROT) + + an Outlook.AutoFormatRules array + + + + returns a running Outlook.AutoFormatRules object from the running object table(ROT). the method takes the first element from the table + + an Outlook.AutoFormatRules object or null + + + + returns a running Outlook.AutoFormatRules object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.AutoFormatRules object or null + + + + creates active sink helper + + + + + CoClass SelectNamesDialog + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861560.aspx + + + + + DispatchInterface _SelectNamesDialog + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868361.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869346.aspx + + NetOffice.OutlookApi.Enums.OlDefaultSelectNamesDisplayMode defaultMode + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867250.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866219.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868056.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869841.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868376.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867517.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868171.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868620.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861926.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869682.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870050.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864014.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862969.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861848.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of SelectNamesDialog + + + + + creates a new instance of SelectNamesDialog + + registered ProgID + + + + returns all running Outlook.SelectNamesDialog objects from the running object table(ROT) + + an Outlook.SelectNamesDialog array + + + + returns a running Outlook.SelectNamesDialog object from the running object table(ROT). the method takes the first element from the table + + an Outlook.SelectNamesDialog object or null + + + + returns a running Outlook.SelectNamesDialog object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.SelectNamesDialog object or null + + + + creates active sink helper + + + + + CoClass Column + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868725.aspx + + + + + DispatchInterface _Column + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869605.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868876.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869226.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869788.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869641.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of Column + + + + + creates a new instance of Column + + registered ProgID + + + + returns all running Outlook.Column objects from the running object table(ROT) + + an Outlook.Column array + + + + returns a running Outlook.Column object from the running object table(ROT). the method takes the first element from the table + + an Outlook.Column object or null + + + + returns a running Outlook.Column object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.Column object or null + + + + creates active sink helper + + + + + CoClass OlkBusinessCardControl + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868063.aspx + + + + + DispatchInterface _OlkBusinessCardControl + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863586.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863907.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of OlkBusinessCardControl + + + + + creates a new instance of OlkBusinessCardControl + + registered ProgID + + + + returns all running Outlook.OlkBusinessCardControl objects from the running object table(ROT) + + an Outlook.OlkBusinessCardControl array + + + + returns a running Outlook.OlkBusinessCardControl object from the running object table(ROT). the method takes the first element from the table + + an Outlook.OlkBusinessCardControl object or null + + + + returns a running Outlook.OlkBusinessCardControl object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.OlkBusinessCardControl object or null + + + + creates active sink helper + + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863387.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867359.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862468.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868035.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867371.aspx + + + + CoClass OlkCheckBox + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866887.aspx + + + + + DispatchInterface _OlkCheckBox + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862510.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868635.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868835.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863426.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861825.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863596.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870194.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861928.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861042.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865808.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869851.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863609.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866708.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of OlkCheckBox + + + + + creates a new instance of OlkCheckBox + + registered ProgID + + + + returns all running Outlook.OlkCheckBox objects from the running object table(ROT) + + an Outlook.OlkCheckBox array + + + + returns a running Outlook.OlkCheckBox object from the running object table(ROT). the method takes the first element from the table + + an Outlook.OlkCheckBox object or null + + + + returns a running Outlook.OlkCheckBox object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.OlkCheckBox object or null + + + + creates active sink helper + + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866392.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868085.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861910.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861031.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860945.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862996.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868405.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869384.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868465.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864423.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865074.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868275.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869554.aspx + + + + DispatchInterface _ViewFont + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869588.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861540.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867618.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863929.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868069.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869283.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864205.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863934.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869278.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868534.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862703.aspx + + + + + SupportByVersion Outlook 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866258.aspx + + + + + DispatchInterface _AttachmentSelection + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860421.aspx + + NetOffice.OutlookApi.Enums.OlSelectionContents SelectionContents + + + + SupportByVersionAttribute Outlook, 12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersionAttribute Outlook, 12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869147.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862708.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869136.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861934.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867343.aspx + + + + + SupportByVersion Outlook 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862981.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + + + object Index + + + + DispatchInterface _ExchangeUser + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869237.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866234.aspx + + optional object HWnd + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866234.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860983.aspx + + DateTime Start + Int32 MinPerChar + optional object CompleteFormat + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860983.aspx + + DateTime Start + Int32 MinPerChar + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868285.aspx + + optional object MakePermanent + optional object Refresh + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868285.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868285.aspx + + optional object MakePermanent + + + + SupportByVersion Outlook 12, 14, 15 + + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864255.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870184.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864766.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866704.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862143.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869724.aspx + + + + + SupportByVersion Outlook 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864210.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861610.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869804.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866970.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861801.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868642.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863069.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868616.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + Unknown COM Proxy + + + + + SupportByVersion Outlook 12, 14, 15 + Get + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867518.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869493.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870115.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869240.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869719.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869132.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868874.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870145.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868681.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869367.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863675.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866187.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862975.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862155.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868169.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868640.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868582.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862991.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868486.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861563.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864425.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868654.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860660.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866433.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866216.aspx + + + + + DispatchInterface _StorageItem + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867843.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860764.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869211.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861827.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869596.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869371.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869398.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863072.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865071.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866190.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866043.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866946.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860744.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863448.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864795.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869055.aspx + + + + + DispatchInterface _RuleAction + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870044.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866918.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868393.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860365.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868848.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865288.aspx + + + + + DispatchInterface _NavigationModules + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866950.aspx + + NetOffice.OutlookApi.Enums.OlNavigationModuleType ModuleType + + + + SupportByVersionAttribute Outlook, 12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersionAttribute Outlook, 12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869670.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865819.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869171.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868933.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867369.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + + + object Index + + + + DispatchInterface Conflicts + SupportByVersion Outlook, 11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868978.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869881.aspx + + + + + SupportByVersion Outlook 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863031.aspx + + + + + SupportByVersion Outlook 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862998.aspx + + + + + SupportByVersion Outlook 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862418.aspx + + + + + SupportByVersionAttribute Outlook, 11,12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersionAttribute Outlook, 11,12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersion Outlook 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864189.aspx + + + + + SupportByVersion Outlook 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863280.aspx + + + + + SupportByVersion Outlook 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864782.aspx + + + + + SupportByVersion Outlook 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866455.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864473.aspx + + + + + SupportByVersion Outlook 11, 12, 14, 15 + + + object Index + + + + DispatchInterface _OutlookBarGroups + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869192.aspx + + string Name + optional object Index + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869192.aspx + + string Name + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868039.aspx + + object Index + + + + SupportByVersionAttribute Outlook, 9,10,11,12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersionAttribute Outlook, 9,10,11,12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868763.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862509.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869976.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866483.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862695.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + + object Index + + + + DispatchInterface MAPIFolder + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + + NetOffice.OutlookApi.MAPIFolder DestinationFolder + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + + optional object DisplayMode + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + + NetOffice.OutlookApi.MAPIFolder DestinationFolder + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + + + optional object fNoUI + optional object Name + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + + + optional object fNoUI + + + + SupportByVersion Outlook 12, 14, 15 + + + string StorageIdentifier + NetOffice.OutlookApi.Enums.OlStorageIdentifierType StorageIdentifierType + + + + SupportByVersion Outlook 12, 14, 15 + + + optional object Filter + optional object TableContents + + + + SupportByVersion Outlook 12, 14, 15 + + + + + + SupportByVersion Outlook 12, 14, 15 + + + optional object Filter + + + + SupportByVersion Outlook 12, 14, 15 + + + + + + SupportByVersion Outlook 14, 15 + + + + + + SupportByVersion Outlook 14, 15 + + + stdole.Picture Picture + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Outlook 11, 12, 14, 15 + Get + + + + + SupportByVersion Outlook 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Outlook 12, 14, 15 + Get + + + + + SupportByVersion Outlook 12, 14, 15 + Get + + + + + SupportByVersion Outlook 12, 14, 15 + Get + + + + + DispatchInterface AddressEntries + SupportByVersion Outlook, 9,10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869448.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868663.aspx + + string Type + optional object Name + optional object Address + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868663.aspx + + string Type + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868663.aspx + + string Type + optional object Name + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870063.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862379.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866710.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863900.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868090.aspx + + optional object Property + optional object Order + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868090.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868090.aspx + + optional object Property + + + + SupportByVersionAttribute Outlook, 9,10,11,12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersionAttribute Outlook, 9,10,11,12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862779.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869802.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868832.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864191.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862459.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + + object Index + + + + Interface _IDocSiteControl + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + + + + + SupportByVersion Outlook 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862378.aspx + + + + SupportByVersion Outlook 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 12, 14, 15 + + 3 + + + + SupportByVersion Outlook 12, 14, 15 + + 4 + + + + SupportByVersion Outlook 12, 14, 15 + + 5 + + + + SupportByVersion Outlook 12, 14, 15 + + 6 + + + + SupportByVersion Outlook 12, 14, 15 + + 7 + + + + SupportByVersion Outlook 12, 14, 15 + + 8 + + + + SupportByVersion Outlook 12, 14, 15 + + 9 + + + + SupportByVersion Outlook 12, 14, 15 + + 10 + + + + SupportByVersion Outlook 12, 14, 15 + + 11 + + + + SupportByVersion Outlook 12, 14, 15 + + 12 + + + + SupportByVersion Outlook 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867637.aspx + + + + SupportByVersion Outlook 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862436.aspx + + + + SupportByVersion Outlook 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867915.aspx + + + + SupportByVersion Outlook 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 12, 14, 15 + + 3 + + + + SupportByVersion Outlook 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869604.aspx + + + + SupportByVersion Outlook 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861863.aspx + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867655.aspx + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868541.aspx + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 4 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868693.aspx + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 4 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 5 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 6 + + + + CoClass CalendarView + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863595.aspx + + + + + DispatchInterface _CalendarView + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862662.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869768.aspx + + string Name + optional NetOffice.OutlookApi.Enums.OlViewSaveOption SaveOption + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869768.aspx + + string Name + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867652.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862250.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861847.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869957.aspx + + DateTime Date + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869551.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866398.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865080.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861559.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869686.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868670.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862711.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870143.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866974.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867277.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869861.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869002.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860677.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863090.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861541.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867853.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861842.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864453.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + + + + + SupportByVersion Outlook 12, 14, 15 + Get + + + + + SupportByVersion Outlook 12, 14, 15 + Get + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868902.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862088.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864304.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868721.aspx + + + + + SupportByVersion Outlook 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869571.aspx + + + + + SupportByVersion Outlook 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869194.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of CalendarView + + + + + creates a new instance of CalendarView + + registered ProgID + + + + returns all running Outlook.CalendarView objects from the running object table(ROT) + + an Outlook.CalendarView array + + + + returns a running Outlook.CalendarView object from the running object table(ROT). the method takes the first element from the table + + an Outlook.CalendarView object or null + + + + returns a running Outlook.CalendarView object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.CalendarView object or null + + + + creates active sink helper + + + + + CoClass DoNotUseMeFolder + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of DoNotUseMeFolder + + + + + creates a new instance of DoNotUseMeFolder + + registered ProgID + + + + returns all running Outlook.DoNotUseMeFolder objects from the running object table(ROT) + + an Outlook.DoNotUseMeFolder array + + + + returns a running Outlook.DoNotUseMeFolder object from the running object table(ROT). the method takes the first element from the table + + an Outlook.DoNotUseMeFolder object or null + + + + returns a running Outlook.DoNotUseMeFolder object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.DoNotUseMeFolder object or null + + + + creates active sink helper + + + + + CoClass OrderFields + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869552.aspx + + + + + DispatchInterface _OrderFields + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868461.aspx + + string PropertyName + optional object IsDescending + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868461.aspx + + string PropertyName + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869958.aspx + + object Index + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861631.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868734.aspx + + string PropertyName + object Index + optional object IsDescending + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868734.aspx + + string PropertyName + object Index + + + + SupportByVersionAttribute Outlook, 12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersionAttribute Outlook, 12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863629.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866929.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869189.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869720.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863107.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + + + object Index + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of OrderFields + + + + + creates a new instance of OrderFields + + registered ProgID + + + + returns all running Outlook.OrderFields objects from the running object table(ROT) + + an Outlook.OrderFields array + + + + returns a running Outlook.OrderFields object from the running object table(ROT). the method takes the first element from the table + + an Outlook.OrderFields object or null + + + + returns a running Outlook.OrderFields object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.OrderFields object or null + + + + creates active sink helper + + + + + CoClass Stores + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867405.aspx + + + + + DispatchInterface _Stores + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersionAttribute Outlook, 12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersionAttribute Outlook, 12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867867.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870109.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868542.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869355.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862243.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + + + object Index + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of Stores + + + + + creates a new instance of Stores + + registered ProgID + + + + returns all running Outlook.Stores objects from the running object table(ROT) + + an Outlook.Stores array + + + + returns a running Outlook.Stores object from the running object table(ROT). the method takes the first element from the table + + an Outlook.Stores object or null + + + + returns a running Outlook.Stores object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.Stores object or null + + + + creates active sink helper + + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868606.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862524.aspx + + + + CoClass FromRssFeedRuleCondition + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867600.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of FromRssFeedRuleCondition + + + + + creates a new instance of FromRssFeedRuleCondition + + registered ProgID + + + + returns all running Outlook.FromRssFeedRuleCondition objects from the running object table(ROT) + + an Outlook.FromRssFeedRuleCondition array + + + + returns a running Outlook.FromRssFeedRuleCondition object from the running object table(ROT). the method takes the first element from the table + + an Outlook.FromRssFeedRuleCondition object or null + + + + returns a running Outlook.FromRssFeedRuleCondition object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.FromRssFeedRuleCondition object or null + + + + creates active sink helper + + + + + CoClass CategoryRuleCondition + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866916.aspx + + + + + DispatchInterface _CategoryRuleCondition + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864750.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864455.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869796.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868817.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860359.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861565.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866733.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of CategoryRuleCondition + + + + + creates a new instance of CategoryRuleCondition + + registered ProgID + + + + returns all running Outlook.CategoryRuleCondition objects from the running object table(ROT) + + an Outlook.CategoryRuleCondition array + + + + returns a running Outlook.CategoryRuleCondition object from the running object table(ROT). the method takes the first element from the table + + an Outlook.CategoryRuleCondition object or null + + + + returns a running Outlook.CategoryRuleCondition object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.CategoryRuleCondition object or null + + + + creates active sink helper + + + + + CoClass RuleAction + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865863.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of RuleAction + + + + + creates a new instance of RuleAction + + registered ProgID + + + + returns all running Outlook.RuleAction objects from the running object table(ROT) + + an Outlook.RuleAction array + + + + returns a running Outlook.RuleAction object from the running object table(ROT). the method takes the first element from the table + + an Outlook.RuleAction object or null + + + + returns a running Outlook.RuleAction object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.RuleAction object or null + + + + creates active sink helper + + + + + CoClass Reminders + SupportByVersion Outlook, 10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866017.aspx + + + + + DispatchInterface _Reminders + SupportByVersion Outlook, 10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869041.aspx + + object Index + + + + SupportByVersionAttribute Outlook, 10,11,12,14,15 + + + + + SupportByVersionAttribute Outlook, 10,11,12,14,15 + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860986.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869005.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860289.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869107.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867280.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + + + object Index + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of Reminders + + + + + creates a new instance of Reminders + + registered ProgID + + + + returns all running Outlook.Reminders objects from the running object table(ROT) + + an Outlook.Reminders array + + + + returns a running Outlook.Reminders object from the running object table(ROT). the method takes the first element from the table + + an Outlook.Reminders object or null + + + + returns a running Outlook.Reminders object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.Reminders object or null + + + + creates active sink helper + + + + + SupportByVersion Outlook, 10,11,12,14,15 + + + + + SupportByVersion Outlook 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867326.aspx + + + + SupportByVersion Outlook, 10,11,12,14,15 + + + + + SupportByVersion Outlook 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869105.aspx + + + + SupportByVersion Outlook, 10,11,12,14,15 + + + + + SupportByVersion Outlook 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863669.aspx + + + + SupportByVersion Outlook, 10,11,12,14,15 + + + + + SupportByVersion Outlook 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866477.aspx + + + + SupportByVersion Outlook, 10,11,12,14,15 + + + + + SupportByVersion Outlook 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869874.aspx + + + + SupportByVersion Outlook, 10,11,12,14,15 + + + + + SupportByVersion Outlook 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862485.aspx + + + + CoClass TaskRequestAcceptItem + SupportByVersion Outlook, 9,10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868287.aspx + + + + + DispatchInterface _TaskRequestAcceptItem + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867481.aspx + + NetOffice.OutlookApi.Enums.OlInspectorClose SaveMode + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862084.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869008.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869170.aspx + + optional object Modal + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869170.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865841.aspx + + NetOffice.OutlookApi.MAPIFolder DestFldr + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869617.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869618.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867480.aspx + + string Path + optional object Type + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867480.aspx + + string Path + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867905.aspx + + bool AddToTaskList + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868460.aspx + + + + + SupportByVersion Outlook 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868858.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867837.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869378.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865393.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860933.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869655.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869668.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868615.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864404.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861804.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867120.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868686.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870094.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869526.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869675.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870025.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866025.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868099.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865631.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867152.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863725.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868274.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866782.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865043.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869207.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866766.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867269.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866020.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868295.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864407.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868045.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866914.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869897.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869646.aspx + + + + + SupportByVersion Outlook 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862983.aspx + + + + + SupportByVersion Outlook 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866081.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862414.aspx + + + + + SupportByVersion Outlook 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860959.aspx + + + + + SupportByVersion Outlook 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861236.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of TaskRequestAcceptItem + + + + + creates a new instance of TaskRequestAcceptItem + + registered ProgID + + + + returns all running Outlook.TaskRequestAcceptItem objects from the running object table(ROT) + + an Outlook.TaskRequestAcceptItem array + + + + returns a running Outlook.TaskRequestAcceptItem object from the running object table(ROT). the method takes the first element from the table + + an Outlook.TaskRequestAcceptItem object or null + + + + returns a running Outlook.TaskRequestAcceptItem object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.TaskRequestAcceptItem object or null + + + + creates active sink helper + + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864475.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866911.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865677.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864251.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867821.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864697.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862748.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869840.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863705.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864417.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860301.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861561.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869987.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863003.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866757.aspx + + + + SupportByVersion Outlook, 10,11,12,14,15 + + + + + SupportByVersion Outlook 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867104.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865598.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867237.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868108.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865264.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865985.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861852.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860393.aspx + + + + SupportByVersion Outlook, 14,15 + + + + + SupportByVersion Outlook 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866727.aspx + + + + SupportByVersion Outlook, 14,15 + + + + + SupportByVersion Outlook 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869882.aspx + + + + SupportByVersion Outlook, 15 + + + + + SupportByVersion Outlook 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/jj230145.aspx + + + + CoClass OutlookBarGroups + SupportByVersion Outlook, 9,10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868789.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of OutlookBarGroups + + + + + creates a new instance of OutlookBarGroups + + registered ProgID + + + + returns all running Outlook.OutlookBarGroups objects from the running object table(ROT) + + an Outlook.OutlookBarGroups array + + + + returns a running Outlook.OutlookBarGroups object from the running object table(ROT). the method takes the first element from the table + + an Outlook.OutlookBarGroups object or null + + + + returns a running Outlook.OutlookBarGroups object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.OutlookBarGroups object or null + + + + creates active sink helper + + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865659.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866940.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868646.aspx + + + + CoClass DistListItem + SupportByVersion Outlook, 9,10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860361.aspx + + + + + DispatchInterface _DistListItem + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866271.aspx + + NetOffice.OutlookApi.Enums.OlInspectorClose SaveMode + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869020.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869885.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866741.aspx + + optional object Modal + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866741.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866007.aspx + + NetOffice.OutlookApi.MAPIFolder DestFldr + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864760.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863432.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866229.aspx + + string Path + optional object Type + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866229.aspx + + string Path + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864218.aspx + + NetOffice.OutlookApi.Recipients Recipients + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866439.aspx + + NetOffice.OutlookApi.Recipients Recipients + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867889.aspx + + Int32 Index + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864420.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864726.aspx + + NetOffice.OutlookApi.Recipient Recipient + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863711.aspx + + NetOffice.OutlookApi.Recipient Recipient + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868413.aspx + + NetOffice.OutlookApi.Enums.OlMarkInterval MarkInterval + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861840.aspx + + + + + SupportByVersion Outlook 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866389.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863641.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869936.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868945.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867163.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867115.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862170.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866257.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867508.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868690.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869964.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862118.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868236.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860411.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867325.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862990.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863051.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869731.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869100.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868374.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861299.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869245.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869335.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869329.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866934.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864737.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868290.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865591.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868753.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867257.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863614.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865280.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869099.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863420.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862789.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863716.aspx + + + + + SupportByVersion Outlook 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869108.aspx + + + + + SupportByVersion Outlook 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870038.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866386.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863989.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870106.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861546.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863010.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868377.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865981.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864270.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863103.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863891.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870023.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866262.aspx + + + + + SupportByVersion Outlook 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867482.aspx + + + + + SupportByVersion Outlook 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860767.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of DistListItem + + + + + creates a new instance of DistListItem + + registered ProgID + + + + returns all running Outlook.DistListItem objects from the running object table(ROT) + + an Outlook.DistListItem array + + + + returns a running Outlook.DistListItem object from the running object table(ROT). the method takes the first element from the table + + an Outlook.DistListItem object or null + + + + returns a running Outlook.DistListItem object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.DistListItem object or null + + + + creates active sink helper + + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865402.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869156.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867633.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862716.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868458.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867815.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865312.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867332.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865842.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867634.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869093.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864770.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867823.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861918.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865596.aspx + + + + SupportByVersion Outlook, 10,11,12,14,15 + + + + + SupportByVersion Outlook 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860709.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860675.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867883.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869950.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870034.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865268.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862480.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868780.aspx + + + + SupportByVersion Outlook, 14,15 + + + + + SupportByVersion Outlook 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864704.aspx + + + + SupportByVersion Outlook, 14,15 + + + + + SupportByVersion Outlook 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868457.aspx + + + + SupportByVersion Outlook, 15 + + + + + SupportByVersion Outlook 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/jj227209.aspx + + + + CoClass TaskItem + SupportByVersion Outlook, 9,10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865624.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of TaskItem + + + + + creates a new instance of TaskItem + + registered ProgID + + + + returns all running Outlook.TaskItem objects from the running object table(ROT) + + an Outlook.TaskItem array + + + + returns a running Outlook.TaskItem object from the running object table(ROT). the method takes the first element from the table + + an Outlook.TaskItem object or null + + + + returns a running Outlook.TaskItem object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.TaskItem object or null + + + + creates active sink helper + + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860296.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866242.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868674.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867825.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868282.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868530.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867392.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865643.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870159.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869978.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862720.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868404.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868022.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867439.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867830.aspx + + + + SupportByVersion Outlook, 10,11,12,14,15 + + + + + SupportByVersion Outlook 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868852.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862707.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869511.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865650.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862710.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866393.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870190.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863617.aspx + + + + SupportByVersion Outlook, 14,15 + + + + + SupportByVersion Outlook 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868569.aspx + + + + SupportByVersion Outlook, 14,15 + + + + + SupportByVersion Outlook 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868184.aspx + + + + SupportByVersion Outlook, 15 + + + + + SupportByVersion Outlook 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/jj227312.aspx + + + + DispatchInterface _OlkTimeZoneControl + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864416.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864701.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869849.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868434.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868636.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867700.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861254.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862122.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860435.aspx + + + + + DispatchInterface _DInspectorCtrl + SupportByVersion Outlook, 10 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 10 + + + object pdispItem + + + + SupportByVersion Outlook 10 + Get/Set + + + + + SupportByVersion Outlook 10 + Get + Unknown COM Proxy + + + + + DispatchInterface _Reminder + SupportByVersion Outlook, 10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869129.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868787.aspx + + optional object SnoozeTime + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868787.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869200.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868692.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863080.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870161.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868729.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869704.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870065.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869053.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869756.aspx + + + + + DispatchInterface _TaskRequestUpdateItem + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867635.aspx + + NetOffice.OutlookApi.Enums.OlInspectorClose SaveMode + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865812.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862499.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869400.aspx + + optional object Modal + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869400.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868531.aspx + + NetOffice.OutlookApi.MAPIFolder DestFldr + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867559.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863088.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866972.aspx + + string Path + optional object Type + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866972.aspx + + string Path + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868698.aspx + + bool AddToTaskList + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861912.aspx + + + + + SupportByVersion Outlook 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869321.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860369.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865635.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861305.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869045.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868920.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867368.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866726.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860977.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868336.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867806.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869808.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866233.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866484.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866184.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869348.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867859.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867113.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867851.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863006.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869574.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865991.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862687.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861845.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868894.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865033.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868349.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867137.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870156.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866734.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869304.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866469.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868928.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868968.aspx + + + + + SupportByVersion Outlook 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860631.aspx + + + + + SupportByVersion Outlook 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865793.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861271.aspx + + + + + SupportByVersion Outlook 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869650.aspx + + + + + SupportByVersion Outlook 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865341.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870183.aspx + + + + SupportByVersion Outlook 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 12, 14, 15 + + 3 + + + + SupportByVersion Outlook 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868665.aspx + + + + SupportByVersion Outlook 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/jj715736.aspx + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 4 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869960.aspx + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 4 + + + + CoClass OutlookBarShortcuts + SupportByVersion Outlook, 9,10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865646.aspx + + + + + DispatchInterface _OutlookBarShortcuts + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867131.aspx + + object Target + string Name + optional object Index + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867131.aspx + + object Target + string Name + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863590.aspx + + object Index + + + + SupportByVersionAttribute Outlook, 9,10,11,12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersionAttribute Outlook, 9,10,11,12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869695.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867545.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865057.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863627.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869386.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + + object Index + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of OutlookBarShortcuts + + + + + creates a new instance of OutlookBarShortcuts + + registered ProgID + + + + returns all running Outlook.OutlookBarShortcuts objects from the running object table(ROT) + + an Outlook.OutlookBarShortcuts array + + + + returns a running Outlook.OutlookBarShortcuts object from the running object table(ROT). the method takes the first element from the table + + an Outlook.OutlookBarShortcuts object or null + + + + returns a running Outlook.OutlookBarShortcuts object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.OutlookBarShortcuts object or null + + + + creates active sink helper + + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869326.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868634.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864469.aspx + + + + DispatchInterface _ConversationHeader + SupportByVersion Outlook, 14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869015.aspx + + + + + SupportByVersion Outlook 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860331.aspx + + + + + SupportByVersion Outlook 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869453.aspx + + + + + SupportByVersion Outlook 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864386.aspx + + + + + SupportByVersion Outlook 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861297.aspx + + + + + SupportByVersion Outlook 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863021.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862787.aspx + + + + + SupportByVersion Outlook 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864459.aspx + + + + + DispatchInterface _SenderInAddressListRuleCondition + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868255.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869196.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869747.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864426.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867542.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865665.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866778.aspx + + + + + DispatchInterface _DPageWrapCtrl + SupportByVersion Outlook, 10 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 10 + Get/Set + + + + + DispatchInterface Search + SupportByVersion Outlook, 10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862365.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868896.aspx + + + + + SupportByVersion Outlook 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868367.aspx + + string Name + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863660.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868188.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861620.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867595.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869782.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869970.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869576.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863973.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862523.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869834.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868452.aspx + + + + + DispatchInterface _ReportItem + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868821.aspx + + NetOffice.OutlookApi.Enums.OlInspectorClose SaveMode + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869985.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861871.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865315.aspx + + optional object Modal + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865315.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861607.aspx + + NetOffice.OutlookApi.MAPIFolder DestFldr + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864436.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869208.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866404.aspx + + string Path + optional object Type + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866404.aspx + + string Path + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869358.aspx + + + + + SupportByVersion Outlook 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862121.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869377.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862433.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868755.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868735.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868496.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869372.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863272.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869853.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865305.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862700.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869024.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860352.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865595.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860317.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869889.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862752.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864768.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867321.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860713.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868822.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865655.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868409.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867311.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865871.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868348.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864291.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860944.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863451.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868319.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869672.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869737.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866195.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869745.aspx + + + + + SupportByVersion Outlook 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865097.aspx + + + + + SupportByVersion Outlook 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868221.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860702.aspx + + + + + SupportByVersion Outlook 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868694.aspx + + + + + SupportByVersion Outlook 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860442.aspx + + + + + SupportByVersion Outlook 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867881.aspx + + + + + DispatchInterface _JournalItem + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869839.aspx + + NetOffice.OutlookApi.Enums.OlInspectorClose SaveMode + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867675.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869135.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869836.aspx + + optional object Modal + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869836.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867698.aspx + + NetOffice.OutlookApi.MAPIFolder DestFldr + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866202.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862672.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869877.aspx + + string Path + optional object Type + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869877.aspx + + string Path + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867101.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869501.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869142.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869163.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869664.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863095.aspx + + + + + SupportByVersion Outlook 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864392.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868094.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867568.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869342.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869560.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865998.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868647.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863062.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869014.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865857.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864249.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861604.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861937.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866750.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869648.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869785.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864461.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868879.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867381.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861875.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867457.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867125.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870069.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861619.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866729.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863583.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866434.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864483.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861884.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866048.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867400.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869288.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863727.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868075.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867874.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861602.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869886.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868535.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868338.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861880.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861584.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861260.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864786.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860387.aspx + + + + + SupportByVersion Outlook 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868062.aspx + + + + + SupportByVersion Outlook 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862674.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868254.aspx + + + + + SupportByVersion Outlook 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860624.aspx + + + + + DispatchInterface Exception + SupportByVersion Outlook, 9,10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860328.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869652.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866212.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868736.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864781.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863395.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866718.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860655.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + + + + + DispatchInterface _Items + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861028.aspx + + optional object Type + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861028.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869662.aspx + + string Filter + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862482.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861538.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869214.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860338.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865621.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869261.aspx + + Int32 Index + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860440.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869597.aspx + + string Filter + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867643.aspx + + string Columns + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866960.aspx + + string Property + optional object Descending + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866960.aspx + + string Property + + + + SupportByVersionAttribute Outlook, 9,10,11,12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersionAttribute Outlook, 9,10,11,12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868679.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866765.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865588.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867611.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868906.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866969.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + + object Index + + + + DispatchInterface AddressEntry + SupportByVersion Outlook, 9,10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869306.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865383.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867301.aspx + + optional object HWnd + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867301.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867624.aspx + + DateTime Start + Int32 MinPerChar + optional object CompleteFormat + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867624.aspx + + DateTime Start + Int32 MinPerChar + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860722.aspx + + optional object MakePermanent + optional object Refresh + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860722.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860722.aspx + + optional object MakePermanent + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862409.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869721.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860629.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866732.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865346.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869587.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861815.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863620.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869330.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860641.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863077.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862424.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860674.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866395.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869610.aspx + + + + SupportByVersion Outlook 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869037.aspx + + + + SupportByVersion Outlook 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 12, 14, 15 + + 3 + + + + SupportByVersion Outlook 12, 14, 15 + + 4 + + + + SupportByVersion Outlook 12, 14, 15 + + 5 + + + + SupportByVersion Outlook 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865834.aspx + + + + SupportByVersion Outlook 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 12, 14, 15 + + 3 + + + + SupportByVersion Outlook 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869524.aspx + + + + SupportByVersion Outlook 11, 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 11, 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 11, 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869291.aspx + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 4 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 5 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 6 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 7 + + + + SupportByVersion Outlook 14, 15 + + 11 + + + + SupportByVersion Outlook 14, 15 + + 12 + + + + CoClass ViewFont + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869120.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of ViewFont + + + + + creates a new instance of ViewFont + + registered ProgID + + + + returns all running Outlook.ViewFont objects from the running object table(ROT) + + an Outlook.ViewFont array + + + + returns a running Outlook.ViewFont object from the running object table(ROT). the method takes the first element from the table + + an Outlook.ViewFont object or null + + + + returns a running Outlook.ViewFont object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.ViewFont object or null + + + + creates active sink helper + + + + + CoClass UserDefinedProperty + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868543.aspx + + + + + DispatchInterface _UserDefinedProperty + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867283.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869047.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864194.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868659.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865613.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865599.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866481.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867848.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870054.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of UserDefinedProperty + + + + + creates a new instance of UserDefinedProperty + + registered ProgID + + + + returns all running Outlook.UserDefinedProperty objects from the running object table(ROT) + + an Outlook.UserDefinedProperty array + + + + returns a running Outlook.UserDefinedProperty object from the running object table(ROT). the method takes the first element from the table + + an Outlook.UserDefinedProperty object or null + + + + returns a running Outlook.UserDefinedProperty object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.UserDefinedProperty object or null + + + + creates active sink helper + + + + + CoClass TextRuleCondition + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867379.aspx + + + + + DispatchInterface _TextRuleCondition + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864761.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863731.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862701.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865092.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866402.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862988.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865798.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of TextRuleCondition + + + + + creates a new instance of TextRuleCondition + + registered ProgID + + + + returns all running Outlook.TextRuleCondition objects from the running object table(ROT) + + an Outlook.TextRuleCondition array + + + + returns a running Outlook.TextRuleCondition object from the running object table(ROT). the method takes the first element from the table + + an Outlook.TextRuleCondition object or null + + + + returns a running Outlook.TextRuleCondition object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.TextRuleCondition object or null + + + + creates active sink helper + + + + + CoClass AccountRuleCondition + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861913.aspx + + + + + DispatchInterface _AccountRuleCondition + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864288.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861315.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861920.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867887.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867190.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869732.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869313.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of AccountRuleCondition + + + + + creates a new instance of AccountRuleCondition + + registered ProgID + + + + returns all running Outlook.AccountRuleCondition objects from the running object table(ROT) + + an Outlook.AccountRuleCondition array + + + + returns a running Outlook.AccountRuleCondition object from the running object table(ROT). the method takes the first element from the table + + an Outlook.AccountRuleCondition object or null + + + + returns a running Outlook.AccountRuleCondition object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.AccountRuleCondition object or null + + + + creates active sink helper + + + + + CoClass ImportanceRuleCondition + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865041.aspx + + + + + DispatchInterface _ImportanceRuleCondition + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868699.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867384.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865034.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866784.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868245.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868981.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867367.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of ImportanceRuleCondition + + + + + creates a new instance of ImportanceRuleCondition + + registered ProgID + + + + returns all running Outlook.ImportanceRuleCondition objects from the running object table(ROT) + + an Outlook.ImportanceRuleCondition array + + + + returns a running Outlook.ImportanceRuleCondition object from the running object table(ROT). the method takes the first element from the table + + an Outlook.ImportanceRuleCondition object or null + + + + returns a running Outlook.ImportanceRuleCondition object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.ImportanceRuleCondition object or null + + + + creates active sink helper + + + + + CoClass NewItemAlertRuleAction + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860345.aspx + + + + + DispatchInterface _NewItemAlertRuleAction + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863295.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868828.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867103.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868389.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869917.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869643.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867628.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of NewItemAlertRuleAction + + + + + creates a new instance of NewItemAlertRuleAction + + registered ProgID + + + + returns all running Outlook.NewItemAlertRuleAction objects from the running object table(ROT) + + an Outlook.NewItemAlertRuleAction array + + + + returns a running Outlook.NewItemAlertRuleAction object from the running object table(ROT). the method takes the first element from the table + + an Outlook.NewItemAlertRuleAction object or null + + + + returns a running Outlook.NewItemAlertRuleAction object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.NewItemAlertRuleAction object or null + + + + creates active sink helper + + + + + CoClass PlaySoundRuleAction + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866189.aspx + + + + + DispatchInterface _PlaySoundRuleAction + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863577.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866597.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867584.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869102.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866915.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869922.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867621.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of PlaySoundRuleAction + + + + + creates a new instance of PlaySoundRuleAction + + registered ProgID + + + + returns all running Outlook.PlaySoundRuleAction objects from the running object table(ROT) + + an Outlook.PlaySoundRuleAction array + + + + returns a running Outlook.PlaySoundRuleAction object from the running object table(ROT). the method takes the first element from the table + + an Outlook.PlaySoundRuleAction object or null + + + + returns a running Outlook.PlaySoundRuleAction object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.PlaySoundRuleAction object or null + + + + creates active sink helper + + + + + CoClass OlkTimeControl + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868612.aspx + + + + + DispatchInterface _OlkTimeControl + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867388.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861320.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862658.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869097.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868728.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869114.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866460.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866892.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865584.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868923.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863920.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860346.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870113.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863626.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864471.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869421.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868868.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866016.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869549.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865020.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of OlkTimeControl + + + + + creates a new instance of OlkTimeControl + + registered ProgID + + + + returns all running Outlook.OlkTimeControl objects from the running object table(ROT) + + an Outlook.OlkTimeControl array + + + + returns a running Outlook.OlkTimeControl object from the running object table(ROT). the method takes the first element from the table + + an Outlook.OlkTimeControl object or null + + + + returns a running Outlook.OlkTimeControl object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.OlkTimeControl object or null + + + + creates active sink helper + + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866709.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869446.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865862.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865094.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870088.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862681.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860380.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861291.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865313.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868629.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867578.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862791.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865068.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868825.aspx + + + + CoClass Results + SupportByVersion Outlook, 10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865331.aspx + + + + + DispatchInterface _Results + SupportByVersion Outlook, 10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868071.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867653.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863443.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868845.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861637.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861279.aspx + + string Columns + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869387.aspx + + string Property + optional object Descending + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869387.aspx + + string Property + + + + SupportByVersionAttribute Outlook, 10,11,12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersionAttribute Outlook, 10,11,12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869267.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868057.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863684.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869595.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866417.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863416.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + + + object Index + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of Results + + + + + creates a new instance of Results + + registered ProgID + + + + returns all running Outlook.Results objects from the running object table(ROT) + + an Outlook.Results array + + + + returns a running Outlook.Results object from the running object table(ROT). the method takes the first element from the table + + an Outlook.Results object or null + + + + returns a running Outlook.Results object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.Results object or null + + + + creates active sink helper + + + + + SupportByVersion Outlook, 10,11,12,14,15 + + + + + SupportByVersion Outlook 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868737.aspx + + + + SupportByVersion Outlook, 10,11,12,14,15 + + + + + SupportByVersion Outlook 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861551.aspx + + + + SupportByVersion Outlook, 10,11,12,14,15 + + + + + SupportByVersion Outlook 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867866.aspx + + + + CoClass TaskRequestDeclineItem + SupportByVersion Outlook, 9,10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869677.aspx + + + + + DispatchInterface _TaskRequestDeclineItem + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863648.aspx + + NetOffice.OutlookApi.Enums.OlInspectorClose SaveMode + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869577.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860633.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867285.aspx + + optional object Modal + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867285.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868857.aspx + + NetOffice.OutlookApi.MAPIFolder DestFldr + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863970.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870033.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865378.aspx + + string Path + optional object Type + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865378.aspx + + string Path + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864747.aspx + + bool AddToTaskList + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869486.aspx + + + + + SupportByVersion Outlook 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862962.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862455.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868908.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869095.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861245.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864780.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863461.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864213.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861799.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861280.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869075.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868766.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869766.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866267.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867378.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868688.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867385.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870089.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862247.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867582.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869615.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867842.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868733.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865062.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868208.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865818.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865622.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868252.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861045.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869801.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868524.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869705.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870191.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864187.aspx + + + + + SupportByVersion Outlook 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864493.aspx + + + + + SupportByVersion Outlook 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868351.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865786.aspx + + + + + SupportByVersion Outlook 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861544.aspx + + + + + SupportByVersion Outlook 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869891.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of TaskRequestDeclineItem + + + + + creates a new instance of TaskRequestDeclineItem + + registered ProgID + + + + returns all running Outlook.TaskRequestDeclineItem objects from the running object table(ROT) + + an Outlook.TaskRequestDeclineItem array + + + + returns a running Outlook.TaskRequestDeclineItem object from the running object table(ROT). the method takes the first element from the table + + an Outlook.TaskRequestDeclineItem object or null + + + + returns a running Outlook.TaskRequestDeclineItem object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.TaskRequestDeclineItem object or null + + + + creates active sink helper + + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869953.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868580.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867667.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862386.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863613.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867434.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863455.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865848.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868811.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869660.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869548.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869475.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870036.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867870.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860651.aspx + + + + SupportByVersion Outlook, 10,11,12,14,15 + + + + + SupportByVersion Outlook 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868073.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866431.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861832.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863320.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869692.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869074.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862961.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868271.aspx + + + + SupportByVersion Outlook, 14,15 + + + + + SupportByVersion Outlook 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867893.aspx + + + + SupportByVersion Outlook, 14,15 + + + + + SupportByVersion Outlook 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861041.aspx + + + + SupportByVersion Outlook, 15 + + + + + SupportByVersion Outlook 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/jj229667.aspx + + + + CoClass ReportItem + SupportByVersion Outlook, 9,10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861605.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of ReportItem + + + + + creates a new instance of ReportItem + + registered ProgID + + + + returns all running Outlook.ReportItem objects from the running object table(ROT) + + an Outlook.ReportItem array + + + + returns a running Outlook.ReportItem object from the running object table(ROT). the method takes the first element from the table + + an Outlook.ReportItem object or null + + + + returns a running Outlook.ReportItem object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.ReportItem object or null + + + + creates active sink helper + + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869937.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863307.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867514.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865675.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869256.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865664.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866930.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869586.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868683.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868459.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861591.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868270.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869625.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861603.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863942.aspx + + + + SupportByVersion Outlook, 10,11,12,14,15 + + + + + SupportByVersion Outlook 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863049.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868194.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869057.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861248.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865982.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868974.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867820.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868950.aspx + + + + SupportByVersion Outlook, 14,15 + + + + + SupportByVersion Outlook 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869457.aspx + + + + SupportByVersion Outlook, 14,15 + + + + + SupportByVersion Outlook 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868343.aspx + + + + SupportByVersion Outlook, 15 + + + + + SupportByVersion Outlook 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/jj231496.aspx + + + + CoClass OutlookBarPane + SupportByVersion Outlook, 9,10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870061.aspx + + + + + DispatchInterface _OutlookBarPane + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869336.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866748.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867472.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868339.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869750.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870134.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869413.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of OutlookBarPane + + + + + creates a new instance of OutlookBarPane + + registered ProgID + + + + returns all running Outlook.OutlookBarPane objects from the running object table(ROT) + + an Outlook.OutlookBarPane array + + + + returns a running Outlook.OutlookBarPane object from the running object table(ROT). the method takes the first element from the table + + an Outlook.OutlookBarPane object or null + + + + returns a running Outlook.OutlookBarPane object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.OutlookBarPane object or null + + + + creates active sink helper + + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869977.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + + + + CoClass ContactItem + SupportByVersion Outlook, 9,10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867603.aspx + + + + + DispatchInterface _ContactItem + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861625.aspx + + NetOffice.OutlookApi.Enums.OlInspectorClose SaveMode + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861014.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862373.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866773.aspx + + optional object Modal + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866773.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869633.aspx + + NetOffice.OutlookApi.MAPIFolder DestFldr + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867897.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862148.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868220.aspx + + string Path + optional object Type + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868220.aspx + + string Path + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863898.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862359.aspx + + + + + SupportByVersion Outlook 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868443.aspx + + string Path + + + + SupportByVersion Outlook 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868359.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863014.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867880.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867386.aspx + + string Path + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863935.aspx + + NetOffice.OutlookApi.Enums.OlContactPhoneNumber PhoneNumber + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869513.aspx + + NetOffice.OutlookApi.Enums.OlMarkInterval MarkInterval + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861851.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868370.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866480.aspx + + string Path + + + + SupportByVersion Outlook 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861831.aspx + + + + + SupportByVersion Outlook 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/jj231065.aspx + + + + + SupportByVersion Outlook 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/jj229480.aspx + + NetOffice.OutlookApi.Enums.OlMailingAddress MailingAddress + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868476.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866948.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868700.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864478.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862161.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865274.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868961.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865615.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868930.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863616.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866064.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868608.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867864.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860429.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865802.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869254.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869965.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861547.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863901.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867548.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869251.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864258.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862406.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869811.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869844.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863365.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868050.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865670.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869955.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860971.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868919.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860640.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860982.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869282.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868769.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867232.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866226.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869143.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860952.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864267.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860975.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862080.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867303.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867885.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866227.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862663.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864290.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869537.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868047.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869476.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867631.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862248.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860654.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863063.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867329.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866006.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860936.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869942.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866426.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867187.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861590.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860739.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863592.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860946.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868579.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868560.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869715.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869918.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866001.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863968.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862471.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863059.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867814.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860335.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869210.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865840.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861802.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869043.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862079.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868311.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862692.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868107.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868798.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868070.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869795.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869394.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869869.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868657.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868030.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866080.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863618.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866054.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868609.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862992.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865046.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868471.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867834.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864221.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866735.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866926.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870077.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860947.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868831.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868668.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868200.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867259.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868867.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860667.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864197.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869794.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867383.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869407.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870105.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863903.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861601.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868472.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869088.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868437.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867645.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868392.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869474.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868199.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862246.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862776.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869119.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868841.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864488.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861307.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860437.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867114.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864728.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869774.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869871.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863910.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867390.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869725.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865797.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870180.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867668.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860704.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862400.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868455.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864219.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864274.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861577.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863071.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869375.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867597.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863421.aspx + + + + + SupportByVersion Outlook 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869858.aspx + + + + + SupportByVersion Outlook 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868985.aspx + + + + + SupportByVersion Outlook 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865639.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869642.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870041.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863344.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870049.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865987.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860673.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860694.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868429.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867607.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868467.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869058.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868859.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860753.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865308.aspx + + + + + SupportByVersion Outlook 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861318.aspx + + + + + SupportByVersion Outlook 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870062.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of ContactItem + + + + + creates a new instance of ContactItem + + registered ProgID + + + + returns all running Outlook.ContactItem objects from the running object table(ROT) + + an Outlook.ContactItem array + + + + returns a running Outlook.ContactItem object from the running object table(ROT). the method takes the first element from the table + + an Outlook.ContactItem object or null + + + + returns a running Outlook.ContactItem object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.ContactItem object or null + + + + creates active sink helper + + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867143.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869585.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864389.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869224.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868853.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864009.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864989.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860448.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863599.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862690.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867819.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866923.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869827.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865586.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868975.aspx + + + + SupportByVersion Outlook, 10,11,12,14,15 + + + + + SupportByVersion Outlook 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868306.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869649.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869227.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866588.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868776.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869347.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861599.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869089.aspx + + + + SupportByVersion Outlook, 14,15 + + + + + SupportByVersion Outlook 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869176.aspx + + + + SupportByVersion Outlook, 14,15 + + + + + SupportByVersion Outlook 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869360.aspx + + + + SupportByVersion Outlook, 15 + + + + + SupportByVersion Outlook 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/jj227683.aspx + + + + CoClass MeetingItem + SupportByVersion Outlook, 9,10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868714.aspx + + + + + DispatchInterface _MeetingItem + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870052.aspx + + NetOffice.OutlookApi.Enums.OlInspectorClose SaveMode + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868386.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865824.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867509.aspx + + optional object Modal + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867509.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868483.aspx + + NetOffice.OutlookApi.MAPIFolder DestFldr + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870171.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865023.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869149.aspx + + string Path + optional object Type + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869149.aspx + + string Path + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869092.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867189.aspx + + bool AddToCalendar + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869521.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868643.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869409.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869606.aspx + + + + + SupportByVersion Outlook 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861242.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869353.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867714.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868594.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861614.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869984.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866475.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868846.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869687.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868536.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869197.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860941.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867429.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868448.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860394.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866399.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865626.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870060.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861615.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861012.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864214.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869603.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866760.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864439.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867665.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865657.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867533.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869919.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865608.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868402.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863085.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862081.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865301.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861556.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866985.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868855.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864432.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868400.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868943.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868322.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863419.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860665.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868756.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863425.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861829.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868824.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868584.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868345.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862115.aspx + + + + + SupportByVersion Outlook 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868525.aspx + + + + + SupportByVersion Outlook 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Outlook 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865372.aspx + + + + + SupportByVersion Outlook 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867566.aspx + + + + + SupportByVersion Outlook 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868632.aspx + + + + + SupportByVersion Outlook 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868041.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865853.aspx + + + + + SupportByVersion Outlook 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866031.aspx + + + + + SupportByVersion Outlook 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867151.aspx + + + + + SupportByVersion Outlook 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868547.aspx + + + + + SupportByVersion Outlook 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864715.aspx + + + + + SupportByVersion Outlook 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867155.aspx + + + + + SupportByVersion Outlook 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868264.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of MeetingItem + + + + + creates a new instance of MeetingItem + + registered ProgID + + + + returns all running Outlook.MeetingItem objects from the running object table(ROT) + + an Outlook.MeetingItem array + + + + returns a running Outlook.MeetingItem object from the running object table(ROT). the method takes the first element from the table + + an Outlook.MeetingItem object or null + + + + returns a running Outlook.MeetingItem object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.MeetingItem object or null + + + + creates active sink helper + + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869262.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869085.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868648.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860965.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868082.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866218.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867466.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865388.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869401.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868190.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862376.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864280.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869709.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864995.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862132.aspx + + + + SupportByVersion Outlook, 10,11,12,14,15 + + + + + SupportByVersion Outlook 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861564.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864184.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867860.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864699.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861629.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862521.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867350.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865356.aspx + + + + SupportByVersion Outlook, 14,15 + + + + + SupportByVersion Outlook 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869422.aspx + + + + SupportByVersion Outlook, 14,15 + + + + + SupportByVersion Outlook 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861265.aspx + + + + SupportByVersion Outlook, 15 + + + + + SupportByVersion Outlook 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/jj227688.aspx + + + + DispatchInterface _IDpxCtrl + SupportByVersion Outlook, 10 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 10 + Get/Set + + + + + SupportByVersion Outlook 10 + Get/Set + + + + + DispatchInterface Attachment + SupportByVersion Outlook, 9,10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863918.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866223.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869359.aspx + + string Path + + + + SupportByVersion Outlook 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863306.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865054.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861311.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861007.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868947.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862398.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867615.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865844.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861856.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869887.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865601.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864703.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866906.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860376.aspx + + + + + DispatchInterface Actions + SupportByVersion Outlook, 9,10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868574.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868466.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868324.aspx + + Int32 Index + + + + SupportByVersionAttribute Outlook, 9,10,11,12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersionAttribute Outlook, 9,10,11,12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867164.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870172.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862236.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869068.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860935.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + + object Index + + + + DispatchInterface SyncObjects + SupportByVersion Outlook, 9,10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867391.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersionAttribute Outlook, 9,10,11,12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersionAttribute Outlook, 9,10,11,12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868723.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868192.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864254.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868427.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866423.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866416.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + + object Index + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862452.aspx + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 5 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 6 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 7 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 11 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 12 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 14 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 18 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 19 + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 12, 14, 15 + + 20 + + + + SupportByVersion Outlook 12, 14, 15 + + 21 + + + + SupportByVersion Outlook 12, 14, 15 + + 22 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868059.aspx + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 4 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865283.aspx + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 2 + + + + CoClass SimpleItems + SupportByVersion Outlook, 14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868750.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of SimpleItems + + + + + creates a new instance of SimpleItems + + registered ProgID + + + + returns all running Outlook.SimpleItems objects from the running object table(ROT) + + an Outlook.SimpleItems array + + + + returns a running Outlook.SimpleItems object from the running object table(ROT). the method takes the first element from the table + + an Outlook.SimpleItems object or null + + + + returns a running Outlook.SimpleItems object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.SimpleItems object or null + + + + creates active sink helper + + + + + CoClass NavigationFolder + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869061.aspx + + + + + DispatchInterface _NavigationFolder + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862415.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869514.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869910.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868283.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860976.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868414.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860306.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869198.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868235.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865026.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of NavigationFolder + + + + + creates a new instance of NavigationFolder + + registered ProgID + + + + returns all running Outlook.NavigationFolder objects from the running object table(ROT) + + an Outlook.NavigationFolder array + + + + returns a running Outlook.NavigationFolder object from the running object table(ROT). the method takes the first element from the table + + an Outlook.NavigationFolder object or null + + + + returns a running Outlook.NavigationFolder object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.NavigationFolder object or null + + + + creates active sink helper + + + + + CoClass ToOrFromRuleCondition + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869744.aspx + + + + + DispatchInterface _ToOrFromRuleCondition + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869188.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867295.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869582.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867354.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863266.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868346.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864738.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of ToOrFromRuleCondition + + + + + creates a new instance of ToOrFromRuleCondition + + registered ProgID + + + + returns all running Outlook.ToOrFromRuleCondition objects from the running object table(ROT) + + an Outlook.ToOrFromRuleCondition array + + + + returns a running Outlook.ToOrFromRuleCondition object from the running object table(ROT). the method takes the first element from the table + + an Outlook.ToOrFromRuleCondition object or null + + + + returns a running Outlook.ToOrFromRuleCondition object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.ToOrFromRuleCondition object or null + + + + creates active sink helper + + + + + CoClass FormNameRuleCondition + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866717.aspx + + + + + DispatchInterface _FormNameRuleCondition + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862408.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866714.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869738.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860746.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869488.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865064.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868033.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of FormNameRuleCondition + + + + + creates a new instance of FormNameRuleCondition + + registered ProgID + + + + returns all running Outlook.FormNameRuleCondition objects from the running object table(ROT) + + an Outlook.FormNameRuleCondition array + + + + returns a running Outlook.FormNameRuleCondition object from the running object table(ROT). the method takes the first element from the table + + an Outlook.FormNameRuleCondition object or null + + + + returns a running Outlook.FormNameRuleCondition object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.FormNameRuleCondition object or null + + + + creates active sink helper + + + + + CoClass MarkAsTaskRuleAction + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865843.aspx + + + + + DispatchInterface _MarkAsTaskRuleAction + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868622.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867474.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869077.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865784.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863928.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869221.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863322.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864763.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of MarkAsTaskRuleAction + + + + + creates a new instance of MarkAsTaskRuleAction + + registered ProgID + + + + returns all running Outlook.MarkAsTaskRuleAction objects from the running object table(ROT) + + an Outlook.MarkAsTaskRuleAction array + + + + returns a running Outlook.MarkAsTaskRuleAction object from the running object table(ROT). the method takes the first element from the table + + an Outlook.MarkAsTaskRuleAction object or null + + + + returns a running Outlook.MarkAsTaskRuleAction object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.MarkAsTaskRuleAction object or null + + + + creates active sink helper + + + + + CoClass MoveOrCopyRuleAction + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869449.aspx + + + + + DispatchInterface _MoveOrCopyRuleAction + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868087.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861244.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868382.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860650.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866890.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862179.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869405.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of MoveOrCopyRuleAction + + + + + creates a new instance of MoveOrCopyRuleAction + + registered ProgID + + + + returns all running Outlook.MoveOrCopyRuleAction objects from the running object table(ROT) + + an Outlook.MoveOrCopyRuleAction array + + + + returns a running Outlook.MoveOrCopyRuleAction object from the running object table(ROT). the method takes the first element from the table + + an Outlook.MoveOrCopyRuleAction object or null + + + + returns a running Outlook.MoveOrCopyRuleAction object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.MoveOrCopyRuleAction object or null + + + + creates active sink helper + + + + + CoClass OlkComboBox + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867596.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of OlkComboBox + + + + + creates a new instance of OlkComboBox + + registered ProgID + + + + returns all running Outlook.OlkComboBox objects from the running object table(ROT) + + an Outlook.OlkComboBox array + + + + returns a running Outlook.OlkComboBox object from the running object table(ROT). the method takes the first element from the table + + an Outlook.OlkComboBox object or null + + + + returns a running Outlook.OlkComboBox object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.OlkComboBox object or null + + + + creates active sink helper + + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868301.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860953.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866981.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869230.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866284.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866971.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869165.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864242.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868516.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862393.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868856.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868193.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869239.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870078.aspx + + + + CoClass OlkOptionButton + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868387.aspx + + + + + DispatchInterface _OlkOptionButton + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869864.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860970.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870151.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865667.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864718.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861609.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861592.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870122.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861261.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867455.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868675.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865021.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868331.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of OlkOptionButton + + + + + creates a new instance of OlkOptionButton + + registered ProgID + + + + returns all running Outlook.OlkOptionButton objects from the running object table(ROT) + + an Outlook.OlkOptionButton array + + + + returns a running Outlook.OlkOptionButton object from the running object table(ROT). the method takes the first element from the table + + an Outlook.OlkOptionButton object or null + + + + returns a running Outlook.OlkOptionButton object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.OlkOptionButton object or null + + + + creates active sink helper + + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870177.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860956.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868365.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863030.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869683.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868415.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862490.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869876.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869168.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868491.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869416.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868453.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868372.aspx + + + + CoClass Reminder + SupportByVersion Outlook, 10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868711.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of Reminder + + + + + creates a new instance of Reminder + + registered ProgID + + + + returns all running Outlook.Reminder objects from the running object table(ROT) + + an Outlook.Reminder array + + + + returns a running Outlook.Reminder object from the running object table(ROT). the method takes the first element from the table + + an Outlook.Reminder object or null + + + + returns a running Outlook.Reminder object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.Reminder object or null + + + + creates active sink helper + + + + + DispatchInterface _FormRegionStartup + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866042.aspx + + string FormRegionName + object Item + Int32 LCID + NetOffice.OutlookApi.Enums.OlFormRegionMode FormRegionMode + NetOffice.OutlookApi.Enums.OlFormRegionSize FormRegionSize + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869072.aspx + + NetOffice.OutlookApi.FormRegion FormRegion + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869502.aspx + + string FormRegionName + Int32 LCID + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868914.aspx + + string FormRegionName + Int32 LCID + NetOffice.OutlookApi.Enums.OlFormRegionIcon Icon + + + + DispatchInterface _Table + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865296.aspx + + string Filter + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869545.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862489.aspx + + Int32 MaxRows + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869538.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860626.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868552.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869758.aspx + + string Filter + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864757.aspx + + string SortProperty + optional object Descending + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864757.aspx + + string SortProperty + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861264.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868849.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867445.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861931.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865286.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867531.aspx + + + + + DispatchInterface _Store + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860733.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868545.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860628.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867630.aspx + + NetOffice.OutlookApi.Enums.OlSpecialFolders FolderType + + + + SupportByVersion Outlook 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861309.aspx + + + + + SupportByVersion Outlook 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869924.aspx + + NetOffice.OutlookApi.Enums.OlDefaultFolders FolderType + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867916.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870137.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867658.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867818.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866767.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870142.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869094.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863673.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863016.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866743.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860623.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864719.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861239.aspx + + + + + SupportByVersion Outlook 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869164.aspx + + + + + SupportByVersion Outlook 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865343.aspx + + + + + DispatchInterface OutlookBarGroup + SupportByVersion Outlook, 9,10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864731.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867807.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865047.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869730.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869751.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868406.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868362.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866424.aspx + + + + + DispatchInterface Selection + SupportByVersion Outlook, 9,10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860771.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869016.aspx + + NetOffice.OutlookApi.Enums.OlSelectionContents SelectionContents + + + + SupportByVersionAttribute Outlook, 9,10,11,12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersionAttribute Outlook, 9,10,11,12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860642.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868240.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862251.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868244.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869718.aspx + + + + + SupportByVersion Outlook 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867448.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + + object Index + + + + SupportByVersion Outlook 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869771.aspx + + + + SupportByVersion Outlook 14, 15 + + 0 + + + + SupportByVersion Outlook 14, 15 + + 1 + + + + SupportByVersion Outlook 12, 14, 15 + + + + + SupportByVersion Outlook 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 12, 14, 15 + + 3 + + + + SupportByVersion Outlook 12, 14, 15 + + 4 + + + + SupportByVersion Outlook 12, 14, 15 + + 5 + + + + SupportByVersion Outlook 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869838.aspx + + + + SupportByVersion Outlook 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 12, 14, 15 + + 3 + + + + SupportByVersion Outlook 12, 14, 15 + + 4 + + + + SupportByVersion Outlook 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869096.aspx + + + + SupportByVersion Outlook 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 12, 14, 15 + + 3 + + + + SupportByVersion Outlook 12, 14, 15 + + 4 + + + + SupportByVersion Outlook 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869338.aspx + + + + SupportByVersion Outlook 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868340.aspx + + + + SupportByVersion Outlook 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865011.aspx + + + + SupportByVersion Outlook 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868653.aspx + + + + SupportByVersion Outlook 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 12, 14, 15 + + 3 + + + + SupportByVersion Outlook 12, 14, 15 + + 4 + + + + SupportByVersion Outlook 12, 14, 15 + + 5 + + + + SupportByVersion Outlook 12, 14, 15 + + 6 + + + + SupportByVersion Outlook 14, 15 + + 7 + + + + SupportByVersion Outlook 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868214.aspx + + + + SupportByVersion Outlook 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 12, 14, 15 + + 3 + + + + SupportByVersion Outlook 12, 14, 15 + + 4 + + + + SupportByVersion Outlook 12, 14, 15 + + 5 + + + + SupportByVersion Outlook 12, 14, 15 + + 10 + + + + SupportByVersion Outlook 12, 14, 15 + + 11 + + + + SupportByVersion Outlook 12, 14, 15 + + 20 + + + + SupportByVersion Outlook 12, 14, 15 + + 30 + + + + SupportByVersion Outlook 12, 14, 15 + + 40 + + + + SupportByVersion Outlook 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868439.aspx + + + + SupportByVersion Outlook 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862232.aspx + + + + SupportByVersion Outlook 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 12, 14, 15 + + 3 + + + + SupportByVersion Outlook 12, 14, 15 + + 4 + + + + SupportByVersion Outlook 12, 14, 15 + + 5 + + + + SupportByVersion Outlook 12, 14, 15 + + 6 + + + + SupportByVersion Outlook 12, 14, 15 + + 7 + + + + SupportByVersion Outlook 14, 15 + + 8 + + + + SupportByVersion Outlook 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866073.aspx + + + + SupportByVersion Outlook 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870032.aspx + + + + SupportByVersion Outlook 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 12, 14, 15 + + 3 + + + + SupportByVersion Outlook 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868474.aspx + + + + SupportByVersion Outlook 11, 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 11, 12, 14, 15 + + 100 + + + + SupportByVersion Outlook 11, 12, 14, 15 + + 200 + + + + SupportByVersion Outlook 11, 12, 14, 15 + + 300 + + + + SupportByVersion Outlook 11, 12, 14, 15 + + 400 + + + + SupportByVersion Outlook 11, 12, 14, 15 + + 500 + + + + SupportByVersion Outlook 11, 12, 14, 15 + + 600 + + + + SupportByVersion Outlook 11, 12, 14, 15 + + 700 + + + + SupportByVersion Outlook 11, 12, 14, 15 + + 800 + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869904.aspx + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + + 4 + + + + SupportByVersion Outlook 12, 14, 15 + + 5 + + + + SupportByVersion Outlook 12, 14, 15 + + 6 + + + + SupportByVersion Outlook 15 + + 7 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868277.aspx + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 4 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 5 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 6 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 7 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865792.aspx + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868667.aspx + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 1 + + + + NetOffice MS-Outlook COM Addin + + + + + MS-Outlook Registry Path + + + + + Creates an instance of the class + + + + + IRibbonExtensibility implementation + + target ribbon id, only used from Outlook and ignored in this standard impklementation. overwrite this method if you need a custom behavior + XML content oder string.Empty + + + + ICustomTaskPaneConsumer implementation + + factory proxy from host application + + + + The method is called while the CustomPane attribute is processed + + pane definition + true if paneInfo is modified, otherwise false to set the default or attribute values + + + + Called after any visibility changes + + pane instance + + + + Called after any position changes but not for size changes + + pane instance + + + + This is method is called while startup and ask for permissions to apply a tweak. + + name of the tweak + value of the tweak + true(default) or false if you dont want this tweak is affected to the addin instance + + + + Called for custom tweaks to apply the tweak. + + name for the tweak + value for the teak + + + + Called for custom tweaks to unload a tweak. Please note: This method is not called in case of unexpected termination. + You have no warranties for dispose your tweak. + + name for the tweak + value for the teak + + + + Creates an registry tweak entry in the current addin key + + addin type information + name for the tweak + value for the tweak + throw exception on error + true if key was created otherwise false + + + + Create the used factory. The method was called as first in the base ctor + + new Settings instance + + + + Create the necessary factory and was called in the first line in base ctor + + + + + + Checks for a static method, signed with the ErrorHandlerAttribute and call them if its available + + type information for the class wtih static method + origin method where the error comes from + occured exception + + + + Custom error handler + + origin method where the error comes from + occured exception + + + + Called from regasm while register + + Type information for the class + + + + Called from regasm while ungregister + + Type information for the class + + + + Derived Register Call Helper + + type for derived class + the method to call + arguments + + + + Derived Unregister Call Helper + + type for derived class + the method to call + arguments + + + + reads text file from ressource + + ressourceLocation + text content + + + + The used factory core + + + + + Type Information of the instance + + + + + Host Application Instance + + + + + Collection with all created custom Task Panes + + + + + TaskPaneFactory from CTPFactoryAvailable + + + + + ITaskPane Instances + + + + + Cached Error Method Delegate + + + + + Cached Register Error Method Delegate + + + + + The OnStartupComplete event occurs when the host application completes its startup routines, in the case where the COM add-in loads at startup. + If the add-in is not loaded when the application loads, the OnStartupComplete event does not occur — + even when the user loads the add-in in the COM Add-ins dialog box. When this event does occur, it occurs after the OnConnection event. + You can use the OnStartupComplete event procedure to run code that interacts with the application and that should not be run until the application has finished loading. + For example, if you want to display a form that gives users a choice of documents to create when they start the application, + you can put that code in the OnStartupComplete event procedure. + + + + + The Shutdown event occurs when the COM add-in is unloaded. + You can use the OnDisconnection event procedure to run code that restores any changes made to the application by the add-in and to perform general clean-up operations. + An add-in can be unloaded in one of the following ways: + - The user clears the check box next to the add-in in the COM Add-ins dialog box. + - The host application closes. If the add-in is loaded when the application closes, it is unloaded. + If the add-in's load behavior is set to Startup, it is reloaded when the application starts again. + - The Connect property of the corresponding COMAddIn object is set to False. + + + + + The OnConnection event occurs when the COM add-in is loaded (connected). An add-in can be loaded in one of the following ways: + The user starts the host application and the add-in's load behavior is specified to load when the application starts. + The user loads the add-in in the COM Add-ins dialog box. + The Connect property of the corresponding COMAddIn object is set to True. + For more information about the COMAddIn object, search the Microsoft® Office Visual Basic Reference Help index for "COMAddIn object." + + + + + The OnAddInsUpdate event occurs when the set of loaded COM add-ins changes. + When an add-in is loaded or unloaded, the OnAddInsUpdate event occurs in any other loaded add-ins. + For example, if add-ins A and B both are loaded currently, and then add-in C is loaded, + the OnAddInsUpdate event occurs in add-ins A and B. If C is unloaded, the OnAddInsUpdate event occurs again in add-ins A and B. + + + + + The OnBeginShutdown event occurs when the host application begins its shutdown routines, + in the case where the application closes while the COM add-in is still loaded. + If the add-in is not loaded when the application closes, + the OnBeginShutdown event does not occur. When this event does occur, it occurs before the OnDisconnection event. + You can use the OnBeginShutdown event procedure to run code when the user closes the application. For example, you can run code that saves form data to a file. + + + + + CoClass NotesModule + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869154.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of NotesModule + + + + + creates a new instance of NotesModule + + registered ProgID + + + + returns all running Outlook.NotesModule objects from the running object table(ROT) + + an Outlook.NotesModule array + + + + returns a running Outlook.NotesModule object from the running object table(ROT). the method takes the first element from the table + + an Outlook.NotesModule object or null + + + + returns a running Outlook.NotesModule object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.NotesModule object or null + + + + creates active sink helper + + + + + CoClass StorageItem + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864182.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of StorageItem + + + + + creates a new instance of StorageItem + + registered ProgID + + + + returns all running Outlook.StorageItem objects from the running object table(ROT) + + an Outlook.StorageItem array + + + + returns a running Outlook.StorageItem object from the running object table(ROT). the method takes the first element from the table + + an Outlook.StorageItem object or null + + + + returns a running Outlook.StorageItem object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.StorageItem object or null + + + + creates active sink helper + + + + + CoClass AutoFormatRule + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866244.aspx + + + + + DispatchInterface _AutoFormatRule + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868369.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869740.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868655.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864199.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864398.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868080.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868645.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862504.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861282.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of AutoFormatRule + + + + + creates a new instance of AutoFormatRule + + registered ProgID + + + + returns all running Outlook.AutoFormatRule objects from the running object table(ROT) + + an Outlook.AutoFormatRule array + + + + returns a running Outlook.AutoFormatRule object from the running object table(ROT). the method takes the first element from the table + + an Outlook.AutoFormatRule object or null + + + + returns a running Outlook.AutoFormatRule object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.AutoFormatRule object or null + + + + creates active sink helper + + + + + CoClass UserDefinedProperties + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861835.aspx + + + + + DispatchInterface _UserDefinedProperties + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869539.aspx + + string Name + NetOffice.OutlookApi.Enums.OlUserPropertyType Type + optional object DisplayFormat + optional object Formula + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869539.aspx + + string Name + NetOffice.OutlookApi.Enums.OlUserPropertyType Type + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869539.aspx + + string Name + NetOffice.OutlookApi.Enums.OlUserPropertyType Type + optional object DisplayFormat + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862142.aspx + + string Name + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866074.aspx + + Int32 Index + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869393.aspx + + + + + SupportByVersionAttribute Outlook, 12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersionAttribute Outlook, 12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868291.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860973.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867121.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869369.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866027.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + + + object Index + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of UserDefinedProperties + + + + + creates a new instance of UserDefinedProperties + + registered ProgID + + + + returns all running Outlook.UserDefinedProperties objects from the running object table(ROT) + + an Outlook.UserDefinedProperties array + + + + returns a running Outlook.UserDefinedProperties object from the running object table(ROT). the method takes the first element from the table + + an Outlook.UserDefinedProperties object or null + + + + returns a running Outlook.UserDefinedProperties object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.UserDefinedProperties object or null + + + + creates active sink helper + + + + + CoClass SenderInAddressListRuleCondition + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868964.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of SenderInAddressListRuleCondition + + + + + creates a new instance of SenderInAddressListRuleCondition + + registered ProgID + + + + returns all running Outlook.SenderInAddressListRuleCondition objects from the running object table(ROT) + + an Outlook.SenderInAddressListRuleCondition array + + + + returns a running Outlook.SenderInAddressListRuleCondition object from the running object table(ROT). the method takes the first element from the table + + an Outlook.SenderInAddressListRuleCondition object or null + + + + returns a running Outlook.SenderInAddressListRuleCondition object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.SenderInAddressListRuleCondition object or null + + + + creates active sink helper + + + + + CoClass RuleCondition + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869540.aspx + + + + + DispatchInterface _RuleCondition + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869559.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868706.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868783.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861285.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864236.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869343.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of RuleCondition + + + + + creates a new instance of RuleCondition + + registered ProgID + + + + returns all running Outlook.RuleCondition objects from the running object table(ROT) + + an Outlook.RuleCondition array + + + + returns a running Outlook.RuleCondition object from the running object table(ROT). the method takes the first element from the table + + an Outlook.RuleCondition object or null + + + + returns a running Outlook.RuleCondition object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.RuleCondition object or null + + + + creates active sink helper + + + + + CoClass NavigationModules + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864492.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of NavigationModules + + + + + creates a new instance of NavigationModules + + registered ProgID + + + + returns all running Outlook.NavigationModules objects from the running object table(ROT) + + an Outlook.NavigationModules array + + + + returns a running Outlook.NavigationModules object from the running object table(ROT). the method takes the first element from the table + + an Outlook.NavigationModules object or null + + + + returns a running Outlook.NavigationModules object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.NavigationModules object or null + + + + creates active sink helper + + + + + CoClass OlkContactPhoto + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869806.aspx + + + + + DispatchInterface _OlkContactPhoto + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867601.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869271.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864200.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of OlkContactPhoto + + + + + creates a new instance of OlkContactPhoto + + registered ProgID + + + + returns all running Outlook.OlkContactPhoto objects from the running object table(ROT) + + an Outlook.OlkContactPhoto array + + + + returns a running Outlook.OlkContactPhoto object from the running object table(ROT). the method takes the first element from the table + + an Outlook.OlkContactPhoto object or null + + + + returns a running Outlook.OlkContactPhoto object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.OlkContactPhoto object or null + + + + creates active sink helper + + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864215.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864796.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869332.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869272.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867093.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868566.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867520.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865644.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864241.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869803.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863908.aspx + + + + CoClass Views + SupportByVersion Outlook, 10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865619.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of Views + + + + + creates a new instance of Views + + registered ProgID + + + + returns all running Outlook.Views objects from the running object table(ROT) + + an Outlook.Views array + + + + returns a running Outlook.Views object from the running object table(ROT). the method takes the first element from the table + + an Outlook.Views object or null + + + + returns a running Outlook.Views object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.Views object or null + + + + creates active sink helper + + + + + SupportByVersion Outlook, 10,11,12,14,15 + + + + + SupportByVersion Outlook 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867711.aspx + + + + SupportByVersion Outlook, 10,11,12,14,15 + + + + + SupportByVersion Outlook 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868250.aspx + + + + CoClass DataSourceObject + SupportByVersion Outlook, 10 + + + + + DispatchInterface DDataSourceObject + SupportByVersion Outlook, 10 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 10 + Get/Set + Unknown COM Proxy + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of DataSourceObject + + + + + creates a new instance of DataSourceObject + + registered ProgID + + + + returns all running Outlook.DataSourceObject objects from the running object table(ROT) + + an Outlook.DataSourceObject array + + + + returns a running Outlook.DataSourceObject object from the running object table(ROT). the method takes the first element from the table + + an Outlook.DataSourceObject object or null + + + + returns a running Outlook.DataSourceObject object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.DataSourceObject object or null + + + + creates active sink helper + + + + + DispatchInterface _TasksModule + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866429.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862772.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867844.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860354.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866236.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870091.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868317.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869216.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869046.aspx + + + + + DispatchInterface _NavigationFolders + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870053.aspx + + NetOffice.OutlookApi.MAPIFolder Folder + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869479.aspx + + NetOffice.OutlookApi.NavigationFolder RemovableFolder + + + + SupportByVersionAttribute Outlook, 12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersionAttribute Outlook, 12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869712.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869083.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863637.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868969.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870018.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + + + object Index + + + + DispatchInterface _Category + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870117.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867148.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869697.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866254.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868760.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864208.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869038.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869658.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867857.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869505.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865649.aspx + + + + + DispatchInterface _RuleActions + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersionAttribute Outlook, 12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersionAttribute Outlook, 12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860297.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868055.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861256.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866066.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867678.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866272.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870125.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869726.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866397.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870155.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867702.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865813.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866261.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869775.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864427.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868202.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868410.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866755.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864237.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868191.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860349.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869440.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + + + Int32 Index + + + + DispatchInterface _TimeZone + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867240.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867117.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867502.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862454.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869656.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862252.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869647.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861809.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860403.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865352.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865791.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868357.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861326.aspx + + + + + DispatchInterface Exceptions + SupportByVersion Outlook, 9,10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870084.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersionAttribute Outlook, 9,10,11,12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersionAttribute Outlook, 9,10,11,12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862249.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866965.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868243.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867365.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868300.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + + object Index + + + + DispatchInterface AddressList + SupportByVersion Outlook, 9,10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867247.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868210.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866440.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868614.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868502.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869112.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865051.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868900.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860963.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864302.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863093.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863647.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869696.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869126.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867564.aspx + + + + + DispatchInterface Panes + SupportByVersion Outlook, 9,10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865992.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersionAttribute Outlook, 9,10,11,12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersionAttribute Outlook, 9,10,11,12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868320.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870152.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863937.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865036.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863601.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + + object Index + + + + Interface PropertyPage SupportByVersionAttribute Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862746.aspx + + + + SupportByVersion Outlook 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 12, 14, 15 + + 3 + + + + SupportByVersion Outlook 12, 14, 15 + + 4 + + + + SupportByVersion Outlook 14, 15 + + 5 + + + + SupportByVersion Outlook 14, 15 + + 6 + + + + SupportByVersion Outlook 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863268.aspx + + + + SupportByVersion Outlook 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864239.aspx + + + + SupportByVersion Outlook 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 12, 14, 15 + + 3 + + + + SupportByVersion Outlook 14, 15 + + 4 + + + + SupportByVersion Outlook 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863327.aspx + + + + SupportByVersion Outlook 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870147.aspx + + + + SupportByVersion Outlook 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/jj715744.aspx + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 2 + + + + CoClass TableView + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860357.aspx + + + + + DispatchInterface _TableView + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868946.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868018.aspx + + string Name + optional NetOffice.OutlookApi.Enums.OlViewSaveOption SaveOption + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868018.aspx + + string Name + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861628.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868782.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866454.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869508.aspx + + DateTime Date + + + + SupportByVersion Outlook 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864774.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868175.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867307.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865859.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860760.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869144.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863896.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860646.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869483.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868517.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863381.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861032.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867097.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868977.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864190.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860931.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869693.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863027.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861600.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868685.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866466.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864698.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869460.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863002.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868644.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868669.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864735.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861817.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866057.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870013.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868021.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865028.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868223.aspx + + + + + SupportByVersion Outlook 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868682.aspx + + + + + SupportByVersion Outlook 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861298.aspx + + + + + SupportByVersion Outlook 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868052.aspx + + + + + SupportByVersion Outlook 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870093.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of TableView + + + + + creates a new instance of TableView + + registered ProgID + + + + returns all running Outlook.TableView objects from the running object table(ROT) + + an Outlook.TableView array + + + + returns a running Outlook.TableView object from the running object table(ROT). the method takes the first element from the table + + an Outlook.TableView object or null + + + + returns a running Outlook.TableView object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.TableView object or null + + + + creates active sink helper + + + + + CoClass CalendarModule + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867692.aspx + + + + + DispatchInterface _CalendarModule + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868101.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861036.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869517.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861860.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869110.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861924.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863607.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869592.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863013.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of CalendarModule + + + + + creates a new instance of CalendarModule + + registered ProgID + + + + returns all running Outlook.CalendarModule objects from the running object table(ROT) + + an Outlook.CalendarModule array + + + + returns a running Outlook.CalendarModule object from the running object table(ROT). the method takes the first element from the table + + an Outlook.CalendarModule object or null + + + + returns a running Outlook.CalendarModule object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.CalendarModule object or null + + + + creates active sink helper + + + + + CoClass CalendarSharing + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863593.aspx + + + + + DispatchInterface _CalendarSharing + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862395.aspx + + string Path + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868718.aspx + + NetOffice.OutlookApi.Enums.OlCalendarMailFormat MailFormat + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866903.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869711.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865365.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870166.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869925.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867407.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865614.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864794.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868390.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862986.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862241.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866237.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of CalendarSharing + + + + + creates a new instance of CalendarSharing + + registered ProgID + + + + returns all running Outlook.CalendarSharing objects from the running object table(ROT) + + an Outlook.CalendarSharing array + + + + returns a running Outlook.CalendarSharing object from the running object table(ROT). the method takes the first element from the table + + an Outlook.CalendarSharing object or null + + + + returns a running Outlook.CalendarSharing object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.CalendarSharing object or null + + + + creates active sink helper + + + + + CoClass AssignToCategoryRuleAction + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863962.aspx + + + + + DispatchInterface _AssignToCategoryRuleAction + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868478.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865872.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864772.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866008.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869022.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868854.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867808.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of AssignToCategoryRuleAction + + + + + creates a new instance of AssignToCategoryRuleAction + + registered ProgID + + + + returns all running Outlook.AssignToCategoryRuleAction objects from the running object table(ROT) + + an Outlook.AssignToCategoryRuleAction array + + + + returns a running Outlook.AssignToCategoryRuleAction object from the running object table(ROT). the method takes the first element from the table + + an Outlook.AssignToCategoryRuleAction object or null + + + + returns a running Outlook.AssignToCategoryRuleAction object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.AssignToCategoryRuleAction object or null + + + + creates active sink helper + + + + + CoClass RemoteItem + SupportByVersion Outlook, 9,10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865832.aspx + + + + + DispatchInterface _RemoteItem + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862661.aspx + + NetOffice.OutlookApi.Enums.OlInspectorClose SaveMode + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864216.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860632.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867361.aspx + + optional object Modal + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867361.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861016.aspx + + NetOffice.OutlookApi.MAPIFolder DestFldr + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866707.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861038.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861925.aspx + + string Path + optional object Type + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861925.aspx + + string Path + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866947.aspx + + + + + SupportByVersion Outlook 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860978.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867154.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860370.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862518.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870150.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870139.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870082.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869051.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866470.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867092.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869856.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867465.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869690.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864233.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867536.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865658.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861057.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868304.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866194.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869151.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863264.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868724.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864201.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865266.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863602.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863470.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860766.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863897.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869322.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865013.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868436.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866721.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861638.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865661.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863082.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860966.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862137.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865279.aspx + + + + + SupportByVersion Outlook 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867695.aspx + + + + + SupportByVersion Outlook 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868176.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869546.aspx + + + + + SupportByVersion Outlook 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866966.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of RemoteItem + + + + + creates a new instance of RemoteItem + + registered ProgID + + + + returns all running Outlook.RemoteItem objects from the running object table(ROT) + + an Outlook.RemoteItem array + + + + returns a running Outlook.RemoteItem object from the running object table(ROT). the method takes the first element from the table + + an Outlook.RemoteItem object or null + + + + returns a running Outlook.RemoteItem object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.RemoteItem object or null + + + + creates active sink helper + + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865290.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864722.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866479.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869946.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866747.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865835.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866776.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864413.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866005.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866206.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868308.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868637.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866964.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861874.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868796.aspx + + + + SupportByVersion Outlook, 10,11,12,14,15 + + + + + SupportByVersion Outlook 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861037.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868633.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860390.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870146.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866476.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870112.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867576.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869916.aspx + + + + SupportByVersion Outlook, 14,15 + + + + + SupportByVersion Outlook 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868451.aspx + + + + SupportByVersion Outlook, 14,15 + + + + + SupportByVersion Outlook 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867134.aspx + + + + SupportByVersion Outlook, 15 + + + + + SupportByVersion Outlook 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/jj227878.aspx + + + + SupportByVersion Outlook 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/jj715731.aspx + + + + SupportByVersion Outlook 14, 15 + + 0 + + + + SupportByVersion Outlook 14, 15 + + 1 + + + + SupportByVersion Outlook 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866211.aspx + + + + SupportByVersion Outlook 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 12, 14, 15 + + 3 + + + + SupportByVersion Outlook 12, 14, 15 + + 4 + + + + SupportByVersion Outlook 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864791.aspx + + + + SupportByVersion Outlook 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 12, 14, 15 + + 3 + + + + SupportByVersion Outlook 12, 14, 15 + + 4 + + + + SupportByVersion Outlook 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868081.aspx + + + + SupportByVersion Outlook 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866396.aspx + + + + SupportByVersion Outlook 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864476.aspx + + + + SupportByVersion Outlook 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 12, 14, 15 + + 4 + + + + SupportByVersion Outlook 12, 14, 15 + + 3 + + + + SupportByVersion Outlook 12, 14, 15 + + 5 + + + + SupportByVersion Outlook 12, 14, 15 + + 6 + + + + SupportByVersion Outlook 12, 14, 15 + + 7 + + + + SupportByVersion Outlook 12, 14, 15 + + 8 + + + + SupportByVersion Outlook 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865878.aspx + + + + SupportByVersion Outlook 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862119.aspx + + + + SupportByVersion Outlook 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868897.aspx + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866430.aspx + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864454.aspx + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 4 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 8 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 16 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 32 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 64 + + + + Module GlobalModule + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870017.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863939.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869635.aspx + + NetOffice.OutlookApi.Enums.OlItemType ItemType + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865637.aspx + + string TemplatePath + optional object InFolder + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865637.aspx + + string TemplatePath + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860724.aspx + + string ObjectName + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865800.aspx + + string Type + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866010.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865654.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869462.aspx + + string FilePath + string DestFolderPath + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866933.aspx + + string Scope + optional object Filter + optional object SearchSubFolders + optional object Tag + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866933.aspx + + string Scope + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866933.aspx + + string Scope + optional object Filter + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866933.aspx + + string Scope + optional object Filter + optional object SearchSubFolders + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869145.aspx + + string LookInFolders + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + + + object pvar + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864203.aspx + + object Item + NetOffice.OutlookApi.Enums.OlReferenceType ReferenceType + + + + SupportByVersion Outlook 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863374.aspx + + string RegionName + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868973.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865581.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866436.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869381.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868248.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860684.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870066.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868795.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868935.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867217.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869152.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862144.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865059.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864729.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861554.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867696.aspx + + + + + SupportByVersion Outlook 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861549.aspx + + + + + CoClass SolutionsModule + SupportByVersion Outlook, 14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864298.aspx + + + + + DispatchInterface _SolutionsModule + SupportByVersion Outlook, 14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867156.aspx + + NetOffice.OutlookApi.MAPIFolder Solution + NetOffice.OutlookApi.Enums.OlSolutionScope Scope + + + + SupportByVersion Outlook 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867375.aspx + + + + + SupportByVersion Outlook 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869389.aspx + + + + + SupportByVersion Outlook 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862689.aspx + + + + + SupportByVersion Outlook 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860715.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866442.aspx + + + + + SupportByVersion Outlook 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869461.aspx + + + + + SupportByVersion Outlook 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869583.aspx + + + + + SupportByVersion Outlook 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864776.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of SolutionsModule + + + + + creates a new instance of SolutionsModule + + registered ProgID + + + + returns all running Outlook.SolutionsModule objects from the running object table(ROT) + + an Outlook.SolutionsModule array + + + + returns a running Outlook.SolutionsModule object from the running object table(ROT). the method takes the first element from the table + + an Outlook.SolutionsModule object or null + + + + returns a running Outlook.SolutionsModule object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.SolutionsModule object or null + + + + creates active sink helper + + + + + CoClass AddressRuleCondition + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867572.aspx + + + + + DispatchInterface _AddressRuleCondition + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868810.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865271.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868984.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867409.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861606.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867497.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869494.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of AddressRuleCondition + + + + + creates a new instance of AddressRuleCondition + + registered ProgID + + + + returns all running Outlook.AddressRuleCondition objects from the running object table(ROT) + + an Outlook.AddressRuleCondition array + + + + returns a running Outlook.AddressRuleCondition object from the running object table(ROT). the method takes the first element from the table + + an Outlook.AddressRuleCondition object or null + + + + returns a running Outlook.AddressRuleCondition object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.AddressRuleCondition object or null + + + + creates active sink helper + + + + + CoClass Explorers + SupportByVersion Outlook, 9,10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867227.aspx + + + + + DispatchInterface _Explorers + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868955.aspx + + object Folder + optional NetOffice.OutlookApi.Enums.OlFolderDisplayMode DisplayMode + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868955.aspx + + object Folder + + + + SupportByVersionAttribute Outlook, 9,10,11,12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersionAttribute Outlook, 9,10,11,12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869280.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868323.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865029.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863301.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864437.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + + object Index + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of Explorers + + + + + creates a new instance of Explorers + + registered ProgID + + + + returns all running Outlook.Explorers objects from the running object table(ROT) + + an Outlook.Explorers array + + + + returns a running Outlook.Explorers object from the running object table(ROT). the method takes the first element from the table + + an Outlook.Explorers object or null + + + + returns a running Outlook.Explorers object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.Explorers object or null + + + + creates active sink helper + + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866400.aspx + + + + DispatchInterface _FormRegion + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860638.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869417.aspx + + object Control + string PropertyName + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868575.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865995.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860932.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861322.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860668.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866205.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861932.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861054.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867662.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869611.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867543.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862138.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870140.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862449.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866421.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862461.aspx + + + + + SupportByVersion Outlook 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863603.aspx + + + + + DispatchInterface ItemProperty + SupportByVersion Outlook, 10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863409.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864489.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869175.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869915.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866943.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869934.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861290.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867145.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866030.aspx + + + + + DispatchInterface OutlookBarShortcut + SupportByVersion Outlook, 9,10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870102.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869317.aspx + + object Icon + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866924.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862403.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868546.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869157.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863967.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868031.aspx + + + + + DispatchInterface _Application + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870017.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863939.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869635.aspx + + NetOffice.OutlookApi.Enums.OlItemType ItemType + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865637.aspx + + string TemplatePath + optional object InFolder + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865637.aspx + + string TemplatePath + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860724.aspx + + string ObjectName + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865800.aspx + + string Type + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866010.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865654.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869462.aspx + + string FilePath + string DestFolderPath + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866933.aspx + + string Scope + optional object Filter + optional object SearchSubFolders + optional object Tag + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866933.aspx + + string Scope + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866933.aspx + + string Scope + optional object Filter + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866933.aspx + + string Scope + optional object Filter + optional object SearchSubFolders + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869145.aspx + + string LookInFolders + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + + + object pvar + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864203.aspx + + object Item + NetOffice.OutlookApi.Enums.OlReferenceType ReferenceType + + + + SupportByVersion Outlook 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863374.aspx + + string RegionName + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868973.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865581.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866436.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869381.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868248.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860684.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870066.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868795.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868935.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867217.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869152.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862144.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865059.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864729.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861554.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867696.aspx + + + + + SupportByVersion Outlook 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861549.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869344.aspx + + + + SupportByVersion Outlook 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 12, 14, 15 + + 3 + + + + SupportByVersion Outlook 12, 14, 15 + + 4 + + + + SupportByVersion Outlook 12, 14, 15 + + 5 + + + + SupportByVersion Outlook 12, 14, 15 + + 6 + + + + SupportByVersion Outlook 12, 14, 15 + + 7 + + + + SupportByVersion Outlook 12, 14, 15 + + 8 + + + + SupportByVersion Outlook 12, 14, 15 + + 9 + + + + SupportByVersion Outlook 12, 14, 15 + + 10 + + + + SupportByVersion Outlook 12, 14, 15 + + 11 + + + + SupportByVersion Outlook 12, 14, 15 + + 12 + + + + SupportByVersion Outlook 12, 14, 15 + + 13 + + + + SupportByVersion Outlook 12, 14, 15 + + 14 + + + + SupportByVersion Outlook 12, 14, 15 + + 15 + + + + SupportByVersion Outlook 12, 14, 15 + + 16 + + + + SupportByVersion Outlook 12, 14, 15 + + 17 + + + + SupportByVersion Outlook 12, 14, 15 + + 18 + + + + SupportByVersion Outlook 12, 14, 15 + + 19 + + + + SupportByVersion Outlook 12, 14, 15 + + 20 + + + + SupportByVersion Outlook 12, 14, 15 + + 21 + + + + SupportByVersion Outlook 12, 14, 15 + + 22 + + + + SupportByVersion Outlook 12, 14, 15 + + 23 + + + + SupportByVersion Outlook 12, 14, 15 + + 24 + + + + SupportByVersion Outlook 12, 14, 15 + + 25 + + + + SupportByVersion Outlook 12, 14, 15 + + 26 + + + + SupportByVersion Outlook 12, 14, 15 + + 27 + + + + SupportByVersion Outlook 12, 14, 15 + + 28 + + + + SupportByVersion Outlook 12, 14, 15 + + 29 + + + + SupportByVersion Outlook 12, 14, 15 + + 30 + + + + SupportByVersion Outlook 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867181.aspx + + + + SupportByVersion Outlook 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 12, 14, 15 + + 4 + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870187.aspx + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869250.aspx + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 4 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 5 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 6 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 7 + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + + 8 + + + + SupportByVersion Outlook 11, 12, 14, 15 + + 9 + + + + SupportByVersion Outlook 12, 14, 15 + + 10 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862994.aspx + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 4 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862980.aspx + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 4 + + + + CoClass Conversation + SupportByVersion Outlook, 14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862527.aspx + + + + + DispatchInterface _Conversation + SupportByVersion Outlook, 14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866231.aspx + + + + + SupportByVersion Outlook 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868807.aspx + + object Item + + + + SupportByVersion Outlook 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869780.aspx + + object Item + + + + SupportByVersion Outlook 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866457.aspx + + + + + SupportByVersion Outlook 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869225.aspx + + NetOffice.OutlookApi._Store Store + + + + SupportByVersion Outlook 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867861.aspx + + NetOffice.OutlookApi._Store Store + + + + SupportByVersion Outlook 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869753.aspx + + NetOffice.OutlookApi._Store Store + + + + SupportByVersion Outlook 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867852.aspx + + + + + SupportByVersion Outlook 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868412.aspx + + + + + SupportByVersion Outlook 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868084.aspx + + string Categories + NetOffice.OutlookApi._Store Store + + + + SupportByVersion Outlook 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869857.aspx + + NetOffice.OutlookApi.Enums.OlAlwaysDeleteConversation AlwaysDelete + NetOffice.OutlookApi._Store Store + + + + SupportByVersion Outlook 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865038.aspx + + NetOffice.OutlookApi.MAPIFolder MoveToFolder + NetOffice.OutlookApi._Store Store + + + + SupportByVersion Outlook 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860425.aspx + + NetOffice.OutlookApi._Store Store + + + + SupportByVersion Outlook 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869032.aspx + + NetOffice.OutlookApi._Store Store + + + + SupportByVersion Outlook 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863707.aspx + + NetOffice.OutlookApi._Store Store + + + + SupportByVersion Outlook 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869259.aspx + + + + + SupportByVersion Outlook 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868054.aspx + + + + + SupportByVersion Outlook 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866390.aspx + + + + + SupportByVersion Outlook 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869565.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869792.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of Conversation + + + + + creates a new instance of Conversation + + registered ProgID + + + + returns all running Outlook.Conversation objects from the running object table(ROT) + + an Outlook.Conversation array + + + + returns a running Outlook.Conversation object from the running object table(ROT). the method takes the first element from the table + + an Outlook.Conversation object or null + + + + returns a running Outlook.Conversation object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.Conversation object or null + + + + creates active sink helper + + + + + CoClass TimeZone + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868617.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of TimeZone + + + + + creates a new instance of TimeZone + + registered ProgID + + + + returns all running Outlook.TimeZone objects from the running object table(ROT) + + an Outlook.TimeZone array + + + + returns a running Outlook.TimeZone object from the running object table(ROT). the method takes the first element from the table + + an Outlook.TimeZone object or null + + + + returns a running Outlook.TimeZone object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.TimeZone object or null + + + + creates active sink helper + + + + + CoClass FormRegion + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863634.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of FormRegion + + + + + creates a new instance of FormRegion + + registered ProgID + + + + returns all running Outlook.FormRegion objects from the running object table(ROT) + + an Outlook.FormRegion array + + + + returns a running Outlook.FormRegion object from the running object table(ROT). the method takes the first element from the table + + an Outlook.FormRegion object or null + + + + returns a running Outlook.FormRegion object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.FormRegion object or null + + + + creates active sink helper + + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868186.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860943.aspx + + + + CoClass Category + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861539.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of Category + + + + + creates a new instance of Category + + registered ProgID + + + + returns all running Outlook.Category objects from the running object table(ROT) + + an Outlook.Category array + + + + returns a running Outlook.Category object from the running object table(ROT). the method takes the first element from the table + + an Outlook.Category object or null + + + + returns a running Outlook.Category object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.Category object or null + + + + creates active sink helper + + + + + CoClass OlkFrameHeader + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860681.aspx + + + + + DispatchInterface _OlkFrameHeader + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868892.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867452.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862076.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863015.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868913.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869048.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866252.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of OlkFrameHeader + + + + + creates a new instance of OlkFrameHeader + + registered ProgID + + + + returns all running Outlook.OlkFrameHeader objects from the running object table(ROT) + + an Outlook.OlkFrameHeader array + + + + returns a running Outlook.OlkFrameHeader object from the running object table(ROT). the method takes the first element from the table + + an Outlook.OlkFrameHeader object or null + + + + returns a running Outlook.OlkFrameHeader object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.OlkFrameHeader object or null + + + + creates active sink helper + + + + + CoClass NameSpace + SupportByVersion Outlook, 9,10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869848.aspx + + + + + DispatchInterface _NameSpace + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866418.aspx + + string RecipientName + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866724.aspx + + NetOffice.OutlookApi.Enums.OlDefaultFolders FolderType + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861238.aspx + + string EntryIDFolder + optional object EntryIDStore + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861238.aspx + + string EntryIDFolder + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869893.aspx + + string EntryIDItem + optional object EntryIDStore + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869893.aspx + + string EntryIDItem + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867251.aspx + + string EntryID + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869575.aspx + + NetOffice.OutlookApi.Recipient Recipient + NetOffice.OutlookApi.Enums.OlDefaultFolders FolderType + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870076.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861594.aspx + + optional object Profile + optional object Password + optional object ShowDialog + optional object NewSession + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861594.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861594.aspx + + optional object Profile + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861594.aspx + + optional object Profile + optional object Password + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861594.aspx + + optional object Profile + optional object Password + optional object ShowDialog + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869969.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869071.aspx + + object Store + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864232.aspx + + NetOffice.OutlookApi.MAPIFolder Folder + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862163.aspx + + optional object ContactItem + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862163.aspx + + + + + SupportByVersion Outlook 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861574.aspx + + object Store + NetOffice.OutlookApi.Enums.OlStoreType Type + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867382.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861834.aspx + + bool showProgressDialog + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860428.aspx + + string ID + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860951.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868771.aspx + + string ID + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867648.aspx + + string Path + optional object Name + optional object DownloadAttachments + optional object UseTTL + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867648.aspx + + string Path + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867648.aspx + + string Path + optional object Name + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867648.aspx + + string Path + optional object Name + optional object DownloadAttachments + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869733.aspx + + string Path + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864725.aspx + + object Context + optional object Provider + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864725.aspx + + object Context + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864762.aspx + + string FirstEntryID + string SecondEntryID + + + + SupportByVersion Outlook 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869218.aspx + + NetOffice.OutlookApi.AddressEntry AddressEntry + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869036.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869498.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867831.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869215.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869341.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868379.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868360.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866049.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860705.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869001.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Outlook 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864709.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867142.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866464.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864790.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863979.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863625.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860362.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860350.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863351.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868381.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of NameSpace + + + + + creates a new instance of NameSpace + + registered ProgID + + + + returns all running Outlook.NameSpace objects from the running object table(ROT) + + an Outlook.NameSpace array + + + + returns a running Outlook.NameSpace object from the running object table(ROT). the method takes the first element from the table + + an Outlook.NameSpace object or null + + + + returns a running Outlook.NameSpace object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.NameSpace object or null + + + + creates active sink helper + + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863940.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868722.aspx + + + + CoClass JournalItem + SupportByVersion Outlook, 9,10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866277.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of JournalItem + + + + + creates a new instance of JournalItem + + registered ProgID + + + + returns all running Outlook.JournalItem objects from the running object table(ROT) + + an Outlook.JournalItem array + + + + returns a running Outlook.JournalItem object from the running object table(ROT). the method takes the first element from the table + + an Outlook.JournalItem object or null + + + + returns a running Outlook.JournalItem object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.JournalItem object or null + + + + creates active sink helper + + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869319.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864388.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868830.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861008.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866899.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868239.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863372.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861597.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867342.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860991.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865837.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868613.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867177.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869815.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869199.aspx + + + + SupportByVersion Outlook, 10,11,12,14,15 + + + + + SupportByVersion Outlook 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863097.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866241.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868966.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869700.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868352.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860451.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864746.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868660.aspx + + + + SupportByVersion Outlook, 14,15 + + + + + SupportByVersion Outlook 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866068.aspx + + + + SupportByVersion Outlook, 14,15 + + + + + SupportByVersion Outlook 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868767.aspx + + + + SupportByVersion Outlook, 15 + + + + + SupportByVersion Outlook 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/jj229141.aspx + + + + DispatchInterface _OlkCategory + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869547.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860418.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866011.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866900.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862705.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869799.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868272.aspx + + + + + DispatchInterface _OlkLabel + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866973.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869765.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869812.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862704.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863587.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865382.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867829.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869620.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860974.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869623.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869947.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862245.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869532.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868086.aspx + + + + + DispatchInterface Conflict + SupportByVersion Outlook, 11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868391.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869139.aspx + + + + + SupportByVersion Outlook 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869509.aspx + + + + + SupportByVersion Outlook 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869146.aspx + + + + + SupportByVersion Outlook 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868746.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864740.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864393.aspx + + + + + SupportByVersion Outlook 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866265.aspx + + + + + DispatchInterface ItemProperties + SupportByVersion Outlook, 10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863357.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863099.aspx + + string Name + NetOffice.OutlookApi.Enums.OlUserPropertyType Type + optional object AddToFolderFields + optional object DisplayFormat + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863099.aspx + + string Name + NetOffice.OutlookApi.Enums.OlUserPropertyType Type + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863099.aspx + + string Name + NetOffice.OutlookApi.Enums.OlUserPropertyType Type + optional object AddToFolderFields + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865027.aspx + + Int32 Index + + + + SupportByVersionAttribute Outlook, 10,11,12,14,15 + + + + + SupportByVersionAttribute Outlook, 10,11,12,14,15 + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868689.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863401.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865620.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862665.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864428.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + + + object Index + + + + DispatchInterface _PostItem + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870158.aspx + + NetOffice.OutlookApi.Enums.OlInspectorClose SaveMode + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863270.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869160.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866942.aspx + + optional object Modal + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866942.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869900.aspx + + NetOffice.OutlookApi.MAPIFolder DestFldr + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860995.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869496.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869035.aspx + + string Path + optional object Type + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869035.aspx + + string Path + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862494.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869402.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862686.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860453.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860299.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866783.aspx + + NetOffice.OutlookApi.Enums.OlMarkInterval MarkInterval + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869017.aspx + + + + + SupportByVersion Outlook 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869966.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863892.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868385.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865061.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870056.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868878.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865831.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864402.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866701.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866283.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865817.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870170.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862709.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868942.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860962.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869454.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866406.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865623.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863604.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864778.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868596.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862158.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869366.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866023.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868299.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868809.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860360.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862410.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870075.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867364.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863004.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865616.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867687.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869184.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868049.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868705.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864745.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869566.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869930.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861906.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868628.aspx + + + + + SupportByVersion Outlook 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864484.aspx + + + + + SupportByVersion Outlook 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862216.aspx + + + + + SupportByVersion Outlook 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868398.aspx + + + + + SupportByVersion Outlook 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868494.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863740.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862725.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869580.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866955.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868253.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865317.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869798.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868204.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861286.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867719.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868939.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868397.aspx + + + + + SupportByVersion Outlook 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861243.aspx + + + + + SupportByVersion Outlook 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866902.aspx + + + + + SupportByVersion Outlook 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868791.aspx + + + + SupportByVersion Outlook 14, 15 + + 1 + + + + SupportByVersion Outlook 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868590.aspx + + + + SupportByVersion Outlook 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 12, 14, 15 + + 3 + + + + SupportByVersion Outlook 12, 14, 15 + + 4 + + + + SupportByVersion Outlook 12, 14, 15 + + 5 + + + + SupportByVersion Outlook 12, 14, 15 + + 6 + + + + SupportByVersion Outlook 12, 14, 15 + + 7 + + + + SupportByVersion Outlook 12, 14, 15 + + 8 + + + + SupportByVersion Outlook 12, 14, 15 + + 9 + + + + SupportByVersion Outlook 12, 14, 15 + + 10 + + + + SupportByVersion Outlook 12, 14, 15 + + 11 + + + + SupportByVersion Outlook 12, 14, 15 + + 12 + + + + SupportByVersion Outlook 12, 14, 15 + + 13 + + + + SupportByVersion Outlook 12, 14, 15 + + 15 + + + + SupportByVersion Outlook 12, 14, 15 + + 16 + + + + SupportByVersion Outlook 12, 14, 15 + + 17 + + + + SupportByVersion Outlook 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862369.aspx + + + + SupportByVersion Outlook 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 12, 14, 15 + + 3 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869003.aspx + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865846.aspx + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 5 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 6 + + + + CoClass AccountSelector + SupportByVersion Outlook, 14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867249.aspx + + + + + DispatchInterface _AccountSelector + SupportByVersion Outlook, 14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867436.aspx + + + + + SupportByVersion Outlook 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869528.aspx + + + + + SupportByVersion Outlook 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868506.aspx + + + + + SupportByVersion Outlook 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865851.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869754.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of AccountSelector + + + + + creates a new instance of AccountSelector + + registered ProgID + + + + returns all running Outlook.AccountSelector objects from the running object table(ROT) + + an Outlook.AccountSelector array + + + + returns a running Outlook.AccountSelector object from the running object table(ROT). the method takes the first element from the table + + an Outlook.AccountSelector object or null + + + + returns a running Outlook.AccountSelector object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.AccountSelector object or null + + + + creates active sink helper + + + + + SupportByVersion Outlook, 14,15 + + + + + SupportByVersion Outlook 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869081.aspx + + + + CoClass AttachmentSelection + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863628.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of AttachmentSelection + + + + + creates a new instance of AttachmentSelection + + registered ProgID + + + + returns all running Outlook.AttachmentSelection objects from the running object table(ROT) + + an Outlook.AttachmentSelection array + + + + returns a running Outlook.AttachmentSelection object from the running object table(ROT). the method takes the first element from the table + + an Outlook.AttachmentSelection object or null + + + + returns a running Outlook.AttachmentSelection object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.AttachmentSelection object or null + + + + creates active sink helper + + + + + CoClass Items + SupportByVersion Outlook, 9,10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863652.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of Items + + + + + creates a new instance of Items + + registered ProgID + + + + returns all running Outlook.Items objects from the running object table(ROT) + + an Outlook.Items array + + + + returns a running Outlook.Items object from the running object table(ROT). the method takes the first element from the table + + an Outlook.Items object or null + + + + returns a running Outlook.Items object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.Items object or null + + + + creates active sink helper + + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869609.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865866.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868911.aspx + + + + DispatchInterface _PeopleView + SupportByVersion Outlook, 15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/jj227495.aspx + + + + + SupportByVersion Outlook 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/jj231247.aspx + + string Name + optional NetOffice.OutlookApi.Enums.OlViewSaveOption SaveOption + + + + SupportByVersion Outlook 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/jj231247.aspx + + string Name + + + + SupportByVersion Outlook 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/jj227780.aspx + + + + + SupportByVersion Outlook 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/jj231541.aspx + + + + + SupportByVersion Outlook 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/jj230523.aspx + + + + + SupportByVersion Outlook 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/jj230336.aspx + + DateTime Date + + + + SupportByVersion Outlook 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/jj228406.aspx + + + + + SupportByVersion Outlook 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/jj230583.aspx + + + + + SupportByVersion Outlook 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/jj228591.aspx + + + + + SupportByVersion Outlook 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/jj230405.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/jj227687.aspx + + + + + SupportByVersion Outlook 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/jj228057.aspx + + + + + SupportByVersion Outlook 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/jj231136.aspx + + + + + SupportByVersion Outlook 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/jj230036.aspx + + + + + SupportByVersion Outlook 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/jj229062.aspx + + + + + SupportByVersion Outlook 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/jj229669.aspx + + + + + SupportByVersion Outlook 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/jj228325.aspx + + + + + SupportByVersion Outlook 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/jj228064.aspx + + + + + SupportByVersion Outlook 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/jj229733.aspx + + + + + DispatchInterface _MailModule + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865781.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870072.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866207.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867854.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869357.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866214.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864395.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866266.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862426.aspx + + + + + DispatchInterface _IconView + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869485.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868445.aspx + + string Name + optional NetOffice.OutlookApi.Enums.OlViewSaveOption SaveOption + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868445.aspx + + string Name + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870092.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860955.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868313.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868549.aspx + + DateTime Date + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870104.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868209.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864296.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861312.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866931.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865060.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866208.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862420.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861314.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868937.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869340.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861292.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862160.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867167.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867505.aspx + + + + + DispatchInterface _OlkInfoBar + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864261.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868610.aspx + + + + + DispatchInterface _MailItem + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860308.aspx + + NetOffice.OutlookApi.Enums.OlInspectorClose SaveMode + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868420.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863343.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861853.aspx + + optional object Modal + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861853.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860683.aspx + + NetOffice.OutlookApi.MAPIFolder DestFldr + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861582.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866979.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868727.aspx + + string Path + optional object Type + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868727.aspx + + string Path + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865035.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865399.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868875.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862498.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866779.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862218.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868298.aspx + + NetOffice.OutlookApi.ContactItem contact + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869791.aspx + + NetOffice.OutlookApi.Enums.OlMarkInterval MarkInterval + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867188.aspx + + + + + SupportByVersion Outlook 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869870.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869350.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866957.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864227.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863655.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861914.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866435.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869243.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865304.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860423.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861903.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869408.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869318.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867230.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866458.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860627.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868098.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866759.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867677.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867813.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860348.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869383.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869069.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868956.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865073.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868972.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861257.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865652.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868556.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866403.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868211.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867162.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865864.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869030.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869452.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868585.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861811.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861323.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868941.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867402.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865400.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869438.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866935.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870197.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866908.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867228.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870035.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865320.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866775.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867123.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870073.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861284.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868512.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870011.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867886.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862985.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868473.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869598.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868242.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864408.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862145.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865326.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860378.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866063.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868303.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865811.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869979.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866978.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860730.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866920.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865867.aspx + + + + + SupportByVersion Outlook 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Outlook 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Outlook 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Outlook 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863715.aspx + + + + + SupportByVersion Outlook 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862967.aspx + + + + + SupportByVersion Outlook 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868262.aspx + + + + + SupportByVersion Outlook 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869674.aspx + + + + + SupportByVersion Outlook 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Outlook 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863622.aspx + + + + + SupportByVersion Outlook 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869080.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868823.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869311.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870037.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861586.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866742.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864714.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869249.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866239.aspx + + + + + SupportByVersion Outlook 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867895.aspx + + + + + SupportByVersion Outlook 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869056.aspx + + + + + SupportByVersion Outlook 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863315.aspx + + + + + SupportByVersion Outlook 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867828.aspx + + + + + SupportByVersion Outlook 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862673.aspx + + + + + SupportByVersion Outlook 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867620.aspx + + + + + DispatchInterface UserProperties + SupportByVersion Outlook, 9,10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862196.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867389.aspx + + string Name + NetOffice.OutlookApi.Enums.OlUserPropertyType Type + optional object AddToFolderFields + optional object DisplayFormat + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867389.aspx + + string Name + NetOffice.OutlookApi.Enums.OlUserPropertyType Type + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867389.aspx + + string Name + NetOffice.OutlookApi.Enums.OlUserPropertyType Type + optional object AddToFolderFields + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863689.aspx + + string Name + optional object Custom + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863689.aspx + + string Name + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864414.aspx + + Int32 Index + + + + SupportByVersionAttribute Outlook, 9,10,11,12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersionAttribute Outlook, 9,10,11,12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869191.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868838.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860960.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863415.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866269.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + + object Index + + + + DispatchInterface _Explorer + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869525.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863904.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865063.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869316.aspx + + NetOffice.OutlookApi.Enums.OlPane Pane + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863893.aspx + + NetOffice.OutlookApi.Enums.OlPane Pane + bool Visible + + + + SupportByVersion Outlook 11, 12, 14, 15 + + + NetOffice.OutlookApi.MAPIFolder Folder + + + + SupportByVersion Outlook 11, 12, 14, 15 + + + NetOffice.OutlookApi.MAPIFolder Folder + + + + SupportByVersion Outlook 11, 12, 14, 15 + + + NetOffice.OutlookApi.MAPIFolder Folder + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865861.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869309.aspx + + string Query + NetOffice.OutlookApi.Enums.OlSearchScope SearchScope + + + + SupportByVersion Outlook 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868297.aspx + + object Item + + + + SupportByVersion Outlook 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868732.aspx + + object Item + + + + SupportByVersion Outlook 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869912.aspx + + object Item + + + + SupportByVersion Outlook 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860458.aspx + + + + + SupportByVersion Outlook 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862680.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869277.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861302.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864406.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863296.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866719.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866079.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861617.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868816.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867221.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868726.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861267.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869921.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867095.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866771.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869477.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868233.aspx + + + + + SupportByVersion Outlook 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865605.aspx + + + + + SupportByVersion Outlook 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869315.aspx + + + + + SupportByVersion Outlook 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/jj231535.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/jj230742.aspx + Unknown COM Proxy + + + + + DispatchInterface Recipient + SupportByVersion Outlook, 9,10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867569.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866448.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869807.aspx + + DateTime Start + Int32 MinPerChar + optional object CompleteFormat + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869807.aspx + + DateTime Start + Int32 MinPerChar + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862796.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866062.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862107.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860648.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870083.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867602.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863677.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869442.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861268.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870021.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870168.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862677.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868965.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860728.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861569.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867647.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863703.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870167.aspx + + + + + SupportByVersion Outlook 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868773.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867485.aspx + + + + SupportByVersion Outlook 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 12, 14, 15 + + 3 + + + + SupportByVersion Outlook 12, 14, 15 + + 5 + + + + SupportByVersion Outlook 15 + + 4 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867899.aspx + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 1 + + + + CoClass PeopleView + SupportByVersion Outlook, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/jj229577.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of PeopleView + + + + + creates a new instance of PeopleView + + registered ProgID + + + + returns all running Outlook.PeopleView objects from the running object table(ROT) + + an Outlook.PeopleView array + + + + returns a running Outlook.PeopleView object from the running object table(ROT). the method takes the first element from the table + + an Outlook.PeopleView object or null + + + + returns a running Outlook.PeopleView object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.PeopleView object or null + + + + creates active sink helper + + + + + CoClass FormRegionStartup + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867849.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of FormRegionStartup + + + + + creates a new instance of FormRegionStartup + + registered ProgID + + + + returns all running Outlook.FormRegionStartup objects from the running object table(ROT) + + an Outlook.FormRegionStartup array + + + + returns a running Outlook.FormRegionStartup object from the running object table(ROT). the method takes the first element from the table + + an Outlook.FormRegionStartup object or null + + + + returns a running Outlook.FormRegionStartup object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.FormRegionStartup object or null + + + + creates active sink helper + + + + + CoClass JournalModule + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865371.aspx + + + + + DispatchInterface _JournalModule + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866909.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869626.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864021.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868676.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861025.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865630.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867377.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869492.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866445.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of JournalModule + + + + + creates a new instance of JournalModule + + registered ProgID + + + + returns all running Outlook.JournalModule objects from the running object table(ROT) + + an Outlook.JournalModule array + + + + returns a running Outlook.JournalModule object from the running object table(ROT). the method takes the first element from the table + + an Outlook.JournalModule object or null + + + + returns a running Outlook.JournalModule object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.JournalModule object or null + + + + creates active sink helper + + + + + CoClass MailModule + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869516.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of MailModule + + + + + creates a new instance of MailModule + + registered ProgID + + + + returns all running Outlook.MailModule objects from the running object table(ROT) + + an Outlook.MailModule array + + + + returns a running Outlook.MailModule object from the running object table(ROT). the method takes the first element from the table + + an Outlook.MailModule object or null + + + + returns a running Outlook.MailModule object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.MailModule object or null + + + + creates active sink helper + + + + + CoClass NavigationFolders + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869764.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of NavigationFolders + + + + + creates a new instance of NavigationFolders + + registered ProgID + + + + returns all running Outlook.NavigationFolders objects from the running object table(ROT) + + an Outlook.NavigationFolders array + + + + returns a running Outlook.NavigationFolders object from the running object table(ROT). the method takes the first element from the table + + an Outlook.NavigationFolders object or null + + + + returns a running Outlook.NavigationFolders object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.NavigationFolders object or null + + + + creates active sink helper + + + + + CoClass ViewField + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868037.aspx + + + + + DispatchInterface _ViewField + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864788.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863460.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868364.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863017.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866060.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860292.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of ViewField + + + + + creates a new instance of ViewField + + registered ProgID + + + + returns all running Outlook.ViewField objects from the running object table(ROT) + + an Outlook.ViewField array + + + + returns a running Outlook.ViewField object from the running object table(ROT). the method takes the first element from the table + + an Outlook.ViewField object or null + + + + returns a running Outlook.ViewField object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.ViewField object or null + + + + creates active sink helper + + + + + CoClass OlkTimeZoneControl + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862219.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of OlkTimeZoneControl + + + + + creates a new instance of OlkTimeZoneControl + + registered ProgID + + + + returns all running Outlook.OlkTimeZoneControl objects from the running object table(ROT) + + an Outlook.OlkTimeZoneControl array + + + + returns a running Outlook.OlkTimeZoneControl object from the running object table(ROT). the method takes the first element from the table + + an Outlook.OlkTimeZoneControl object or null + + + + returns a running Outlook.OlkTimeZoneControl object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.OlkTimeZoneControl object or null + + + + creates active sink helper + + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864773.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862978.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865592.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863912.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867832.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862463.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869423.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861566.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864702.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860637.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863670.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864490.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868638.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869906.aspx + + + + CoClass TimeZones + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869013.aspx + + + + + DispatchInterface _TimeZones + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866193.aspx + + DateTime SourceDateTime + NetOffice.OutlookApi._TimeZone SourceTimeZone + NetOffice.OutlookApi._TimeZone DestinationTimeZone + + + + SupportByVersionAttribute Outlook, 12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersionAttribute Outlook, 12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869536.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865050.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869616.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866936.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868840.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869781.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + + + object Index + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of TimeZones + + + + + creates a new instance of TimeZones + + registered ProgID + + + + returns all running Outlook.TimeZones objects from the running object table(ROT) + + an Outlook.TimeZones array + + + + returns a running Outlook.TimeZones object from the running object table(ROT). the method takes the first element from the table + + an Outlook.TimeZones object or null + + + + returns a running Outlook.TimeZones object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.TimeZones object or null + + + + creates active sink helper + + + + + CoClass RuleActions + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867179.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of RuleActions + + + + + creates a new instance of RuleActions + + registered ProgID + + + + returns all running Outlook.RuleActions objects from the running object table(ROT) + + an Outlook.RuleActions array + + + + returns a running Outlook.RuleActions object from the running object table(ROT). the method takes the first element from the table + + an Outlook.RuleActions object or null + + + + returns a running Outlook.RuleActions object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.RuleActions object or null + + + + creates active sink helper + + + + + CoClass OlkInfoBar + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861894.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of OlkInfoBar + + + + + creates a new instance of OlkInfoBar + + registered ProgID + + + + returns all running Outlook.OlkInfoBar objects from the running object table(ROT) + + an Outlook.OlkInfoBar array + + + + returns a running Outlook.OlkInfoBar object from the running object table(ROT). the method takes the first element from the table + + an Outlook.OlkInfoBar object or null + + + + returns a running Outlook.OlkInfoBar object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.OlkInfoBar object or null + + + + creates active sink helper + + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860621.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861240.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868263.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868396.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869434.aspx + + + + CoClass _DpxCtrl + SupportByVersion Outlook, 10 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of _DpxCtrl + + + + + creates a new instance of _DpxCtrl + + registered ProgID + + + + returns all running Outlook._DpxCtrl objects from the running object table(ROT) + + an Outlook._DpxCtrl array + + + + returns a running Outlook._DpxCtrl object from the running object table(ROT). the method takes the first element from the table + + an Outlook._DpxCtrl object or null + + + + returns a running Outlook._DpxCtrl object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook._DpxCtrl object or null + + + + creates active sink helper + + + + + CoClass TaskRequestItem + SupportByVersion Outlook, 9,10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862698.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of TaskRequestItem + + + + + creates a new instance of TaskRequestItem + + registered ProgID + + + + returns all running Outlook.TaskRequestItem objects from the running object table(ROT) + + an Outlook.TaskRequestItem array + + + + returns a running Outlook.TaskRequestItem object from the running object table(ROT). the method takes the first element from the table + + an Outlook.TaskRequestItem object or null + + + + returns a running Outlook.TaskRequestItem object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.TaskRequestItem object or null + + + + creates active sink helper + + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860373.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861909.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865663.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863894.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869320.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867884.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865285.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868174.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869989.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860969.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869268.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865678.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868630.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860695.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869305.aspx + + + + SupportByVersion Outlook, 10,11,12,14,15 + + + + + SupportByVersion Outlook 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868701.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869723.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866413.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863923.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867589.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869778.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868072.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860697.aspx + + + + SupportByVersion Outlook, 14,15 + + + + + SupportByVersion Outlook 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869784.aspx + + + + SupportByVersion Outlook, 14,15 + + + + + SupportByVersion Outlook 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867184.aspx + + + + SupportByVersion Outlook, 15 + + + + + SupportByVersion Outlook 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/jj228141.aspx + + + + CoClass AppointmentItem + SupportByVersion Outlook, 9,10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862177.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of AppointmentItem + + + + + creates a new instance of AppointmentItem + + registered ProgID + + + + returns all running Outlook.AppointmentItem objects from the running object table(ROT) + + an Outlook.AppointmentItem array + + + + returns a running Outlook.AppointmentItem object from the running object table(ROT). the method takes the first element from the table + + an Outlook.AppointmentItem object or null + + + + returns a running Outlook.AppointmentItem object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.AppointmentItem object or null + + + + creates active sink helper + + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860682.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868820.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869927.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863899.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861899.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867180.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868450.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868805.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868971.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865990.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865085.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869640.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864491.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866077.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861892.aspx + + + + SupportByVersion Outlook, 10,11,12,14,15 + + + + + SupportByVersion Outlook 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869458.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869436.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861568.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867460.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869437.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866752.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867872.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868926.aspx + + + + SupportByVersion Outlook, 14,15 + + + + + SupportByVersion Outlook 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868991.aspx + + + + SupportByVersion Outlook, 14,15 + + + + + SupportByVersion Outlook 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869638.aspx + + + + SupportByVersion Outlook, 15 + + + + + SupportByVersion Outlook 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/jj229473.aspx + + + + DispatchInterface _OrderField + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863113.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868944.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868550.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863612.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868403.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867839.aspx + + + + + DispatchInterface _NoteItem + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868378.aspx + + NetOffice.OutlookApi.Enums.OlInspectorClose SaveMode + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865612.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867486.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861881.aspx + + optional object Modal + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861881.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866482.aspx + + NetOffice.OutlookApi.MAPIFolder DestFldr + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864487.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860653.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868224.aspx + + string Path + optional object Type + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868224.aspx + + string Path + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866982.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864991.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867380.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864282.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869370.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870153.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864434.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865329.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867141.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864754.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862443.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860358.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869823.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869103.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867244.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861624.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866486.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867231.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867119.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868273.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867306.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865662.aspx + + + + + SupportByVersion Outlook 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868995.aspx + + + + + SupportByVersion Outlook 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868797.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868741.aspx + + + + + DispatchInterface Links + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + + object Item + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + + object Index + + + + SupportByVersionAttribute Outlook, 9,10,11,12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersionAttribute Outlook, 9,10,11,12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + + object Index + + + + SupportByVersion Outlook 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861287.aspx + + + + SupportByVersion Outlook 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 12, 14, 15 + + 3 + + + + SupportByVersion Outlook 12, 14, 15 + + 4 + + + + SupportByVersion Outlook 12, 14, 15 + + 5 + + + + SupportByVersion Outlook 12, 14, 15 + + 6 + + + + SupportByVersion Outlook 12, 14, 15 + + 7 + + + + SupportByVersion Outlook 12, 14, 15 + + 8 + + + + SupportByVersion Outlook 12, 14, 15 + + 9 + + + + SupportByVersion Outlook 12, 14, 15 + + 10 + + + + SupportByVersion Outlook 12, 14, 15 + + 11 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869959.aspx + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861868.aspx + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 4 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 5 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 6 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 9 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 10 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 11 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 12 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 13 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 16 + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + + 18 + + + + SupportByVersion Outlook 11, 12, 14, 15 + + 19 + + + + SupportByVersion Outlook 11, 12, 14, 15 + + 20 + + + + SupportByVersion Outlook 11, 12, 14, 15 + + 21 + + + + SupportByVersion Outlook 11, 12, 14, 15 + + 22 + + + + SupportByVersion Outlook 11, 12, 14, 15 + + 23 + + + + SupportByVersion Outlook 12, 14, 15 + + 25 + + + + SupportByVersion Outlook 12, 14, 15 + + 28 + + + + SupportByVersion Outlook 12, 14, 15 + + 29 + + + + SupportByVersion Outlook 14, 15 + + 30 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866463.aspx + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 4 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 5 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 1000 + + + + CoClass ConversationHeader + SupportByVersion Outlook, 14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865006.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of ConversationHeader + + + + + creates a new instance of ConversationHeader + + registered ProgID + + + + returns all running Outlook.ConversationHeader objects from the running object table(ROT) + + an Outlook.ConversationHeader array + + + + returns a running Outlook.ConversationHeader object from the running object table(ROT). the method takes the first element from the table + + an Outlook.ConversationHeader object or null + + + + returns a running Outlook.ConversationHeader object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.ConversationHeader object or null + + + + creates active sink helper + + + + + CoClass TasksModule + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870133.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of TasksModule + + + + + creates a new instance of TasksModule + + registered ProgID + + + + returns all running Outlook.TasksModule objects from the running object table(ROT) + + an Outlook.TasksModule array + + + + returns a running Outlook.TasksModule object from the running object table(ROT). the method takes the first element from the table + + an Outlook.TasksModule object or null + + + + returns a running Outlook.TasksModule object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.TasksModule object or null + + + + creates active sink helper + + + + + CoClass OrderField + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864486.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of OrderField + + + + + creates a new instance of OrderField + + registered ProgID + + + + returns all running Outlook.OrderField objects from the running object table(ROT) + + an Outlook.OrderField array + + + + returns a running Outlook.OrderField object from the running object table(ROT). the method takes the first element from the table + + an Outlook.OrderField object or null + + + + returns a running Outlook.OrderField object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.OrderField object or null + + + + creates active sink helper + + + + + CoClass Table + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860769.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of Table + + + + + creates a new instance of Table + + registered ProgID + + + + returns all running Outlook.Table objects from the running object table(ROT) + + an Outlook.Table array + + + + returns a running Outlook.Table object from the running object table(ROT). the method takes the first element from the table + + an Outlook.Table object or null + + + + returns a running Outlook.Table object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.Table object or null + + + + creates active sink helper + + + + + CoClass RuleConditions + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869688.aspx + + + + + DispatchInterface _RuleConditions + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersionAttribute Outlook, 12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersionAttribute Outlook, 12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869062.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869290.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860751.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861035.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866889.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860414.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869301.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865805.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860351.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868020.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862190.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868912.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862688.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868201.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868757.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869178.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869855.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868215.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863931.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863091.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861916.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866273.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868863.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869345.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865065.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866593.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860398.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868588.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869523.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869818.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + + + Int32 Index + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of RuleConditions + + + + + creates a new instance of RuleConditions + + registered ProgID + + + + returns all running Outlook.RuleConditions objects from the running object table(ROT) + + an Outlook.RuleConditions array + + + + returns a running Outlook.RuleConditions object from the running object table(ROT). the method takes the first element from the table + + an Outlook.RuleConditions object or null + + + + returns a running Outlook.RuleConditions object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.RuleConditions object or null + + + + creates active sink helper + + + + + CoClass Store + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862128.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of Store + + + + + creates a new instance of Store + + registered ProgID + + + + returns all running Outlook.Store objects from the running object table(ROT) + + an Outlook.Store array + + + + returns a running Outlook.Store object from the running object table(ROT). the method takes the first element from the table + + an Outlook.Store object or null + + + + returns a running Outlook.Store object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.Store object or null + + + + creates active sink helper + + + + + CoClass NavigationModule + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866731.aspx + + + + + DispatchInterface _NavigationModule + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861327.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868383.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867122.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864243.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869789.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868570.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869161.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869229.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of NavigationModule + + + + + creates a new instance of NavigationModule + + registered ProgID + + + + returns all running Outlook.NavigationModule objects from the running object table(ROT) + + an Outlook.NavigationModule array + + + + returns a running Outlook.NavigationModule object from the running object table(ROT). the method takes the first element from the table + + an Outlook.NavigationModule object or null + + + + returns a running Outlook.NavigationModule object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.NavigationModule object or null + + + + creates active sink helper + + + + + CoClass OlkPageControl + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869006.aspx + + + + + DispatchInterface _OlkPageControl + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870128.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of OlkPageControl + + + + + creates a new instance of OlkPageControl + + registered ProgID + + + + returns all running Outlook.OlkPageControl objects from the running object table(ROT) + + an Outlook.OlkPageControl array + + + + returns a running Outlook.OlkPageControl object from the running object table(ROT). the method takes the first element from the table + + an Outlook.OlkPageControl object or null + + + + returns a running Outlook.OlkPageControl object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.OlkPageControl object or null + + + + creates active sink helper + + + + + CoClass OlkLabel + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865045.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of OlkLabel + + + + + creates a new instance of OlkLabel + + registered ProgID + + + + returns all running Outlook.OlkLabel objects from the running object table(ROT) + + an Outlook.OlkLabel array + + + + returns a running Outlook.OlkLabel object from the running object table(ROT). the method takes the first element from the table + + an Outlook.OlkLabel object or null + + + + returns a running Outlook.OlkLabel object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.OlkLabel object or null + + + + creates active sink helper + + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868708.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867817.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867139.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868754.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869776.aspx + + + + CoClass _RecipientControl + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + DispatchInterface _DRecipientControl + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of _RecipientControl + + + + + creates a new instance of _RecipientControl + + registered ProgID + + + + returns all running Outlook._RecipientControl objects from the running object table(ROT) + + an Outlook._RecipientControl array + + + + returns a running Outlook._RecipientControl object from the running object table(ROT). the method takes the first element from the table + + an Outlook._RecipientControl object or null + + + + returns a running Outlook._RecipientControl object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook._RecipientControl object or null + + + + creates active sink helper + + + + + CoClass PostItem + SupportByVersion Outlook, 9,10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869495.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of PostItem + + + + + creates a new instance of PostItem + + registered ProgID + + + + returns all running Outlook.PostItem objects from the running object table(ROT) + + an Outlook.PostItem array + + + + returns a running Outlook.PostItem object from the running object table(ROT). the method takes the first element from the table + + an Outlook.PostItem object or null + + + + returns a running Outlook.PostItem object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.PostItem object or null + + + + creates active sink helper + + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868576.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865988.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869699.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869634.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865788.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866428.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863971.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864006.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864196.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869234.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862670.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868684.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867873.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863919.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865082.aspx + + + + SupportByVersion Outlook, 10,11,12,14,15 + + + + + SupportByVersion Outlook 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868959.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868227.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865099.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861933.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868979.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868891.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864217.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865806.aspx + + + + SupportByVersion Outlook, 14,15 + + + + + SupportByVersion Outlook 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862520.aspx + + + + SupportByVersion Outlook, 14,15 + + + + + SupportByVersion Outlook 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869570.aspx + + + + SupportByVersion Outlook, 15 + + + + + SupportByVersion Outlook 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/jj229578.aspx + + + + CoClass Inspector + SupportByVersion Outlook, 9,10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869356.aspx + + + + + DispatchInterface _Inspector + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869503.aspx + + NetOffice.OutlookApi.Enums.OlInspectorClose SaveMode + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864462.aspx + + optional object Modal + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864462.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870121.aspx + + string PageName + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870014.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868251.aspx + + string PageName + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869276.aspx + + string PageName + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869361.aspx + + + + + SupportByVersion Outlook 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867657.aspx + + object Control + string PropertyName + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868411.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868989.aspx + + string Path + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867614.aspx + + object Page + string FileName + + + + SupportByVersion Outlook 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862390.aspx + + DateTime Start + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868774.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868246.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869600.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866024.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869722.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868598.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868497.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868196.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870165.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867136.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865095.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866432.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867846.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869599.aspx + + + + + SupportByVersion Outlook 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861823.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of Inspector + + + + + creates a new instance of Inspector + + registered ProgID + + + + returns all running Outlook.Inspector objects from the running object table(ROT) + + an Outlook.Inspector array + + + + returns a running Outlook.Inspector object from the running object table(ROT). the method takes the first element from the table + + an Outlook.Inspector object or null + + + + returns a running Outlook.Inspector object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.Inspector object or null + + + + creates active sink helper + + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865363.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862214.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865374.aspx + + + + SupportByVersion Outlook, 10,11,12,14,15 + + + + + SupportByVersion Outlook 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867903.aspx + + + + SupportByVersion Outlook, 10,11,12,14,15 + + + + + SupportByVersion Outlook 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868289.aspx + + + + SupportByVersion Outlook, 10,11,12,14,15 + + + + + SupportByVersion Outlook 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865042.aspx + + + + SupportByVersion Outlook, 10,11,12,14,15 + + + + + SupportByVersion Outlook 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869786.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869845.aspx + + + + SupportByVersion Outlook, 14,15 + + + + + SupportByVersion Outlook 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861296.aspx + + + + DispatchInterface OutlookBarStorage + SupportByVersion Outlook, 9,10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869645.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868526.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869312.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869923.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869395.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868089.aspx + + + + + DispatchInterface RecurrencePattern + SupportByVersion Outlook, 9,10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863458.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862727.aspx + + DateTime StartDate + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869472.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865875.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869907.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867159.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869388.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866785.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867680.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866939.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869544.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863347.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869589.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861331.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864419.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868430.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861049.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862199.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868812.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868917.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865086.aspx + + + + + Interface _IPageWrapCtrl + SupportByVersion Outlook, 10 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 10 + Get/Set + + + + + SupportByVersion Outlook 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868627.aspx + + + + SupportByVersion Outlook 14, 15 + + 0 + + + + SupportByVersion Outlook 14, 15 + + 1 + + + + SupportByVersion Outlook 14, 15 + + 2 + + + + SupportByVersion Outlook 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867838.aspx + + + + SupportByVersion Outlook 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869981.aspx + + + + SupportByVersion Outlook 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 12, 14, 15 + + 3 + + + + SupportByVersion Outlook 12, 14, 15 + + 4 + + + + SupportByVersion Outlook 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868183.aspx + + + + SupportByVersion Outlook 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 12, 14, 15 + + 3 + + + + SupportByVersion Outlook 12, 14, 15 + + 4 + + + + SupportByVersion Outlook 12, 14, 15 + + 5 + + + + SupportByVersion Outlook 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865789.aspx + + + + SupportByVersion Outlook 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 12, 14, 15 + + 3 + + + + SupportByVersion Outlook 12, 14, 15 + + 4 + + + + SupportByVersion Outlook 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869983.aspx + + + + SupportByVersion Outlook 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 12, 14, 15 + + 4 + + + + SupportByVersion Outlook 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862388.aspx + + + + SupportByVersion Outlook 11, 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 11, 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 11, 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867619.aspx + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864706.aspx + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869427.aspx + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 5 + + + + SupportByVersion Outlook 12, 14, 15 + + 7 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867882.aspx + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863406.aspx + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 4 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 5 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 6 + + + + Task pane UserControl instances can implement these interface in a NetOffice Tools Addin as a special service + + + + + After startup to serve the application instance and custom arguments(if set) + + host application instance + custom task pane definition + custom arguments + + + + While Excel Application shutdown. The method is not called in case of unexpected termination (may user kill the instance in task manager) + + + + + Called after any position changes but not for size changes. Use the UserControl.Resize event instead for size changes + + the current alignment for the instance + + + + Called after any visibility changes because the UserControl.VisibleChanged event doesnt work as expected in a task pane scenario + + the current visibility for the instance + + + + CoClass IconView + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869455.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of IconView + + + + + creates a new instance of IconView + + registered ProgID + + + + returns all running Outlook.IconView objects from the running object table(ROT) + + an Outlook.IconView array + + + + returns a running Outlook.IconView object from the running object table(ROT). the method takes the first element from the table + + an Outlook.IconView object or null + + + + returns a running Outlook.IconView object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.IconView object or null + + + + creates active sink helper + + + + + CoClass Folder + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863890.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of Folder + + + + + creates a new instance of Folder + + registered ProgID + + + + returns all running Outlook.Folder objects from the running object table(ROT) + + an Outlook.Folder array + + + + returns a running Outlook.Folder object from the running object table(ROT). the method takes the first element from the table + + an Outlook.Folder object or null + + + + returns a running Outlook.Folder object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.Folder object or null + + + + creates active sink helper + + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868895.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869445.aspx + + + + CoClass Account + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869974.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of Account + + + + + creates a new instance of Account + + registered ProgID + + + + returns all running Outlook.Account objects from the running object table(ROT) + + an Outlook.Account array + + + + returns a running Outlook.Account object from the running object table(ROT). the method takes the first element from the table + + an Outlook.Account object or null + + + + returns a running Outlook.Account object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.Account object or null + + + + creates active sink helper + + + + + CoClass _InspectorCtrl + SupportByVersion Outlook, 10 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of _InspectorCtrl + + + + + creates a new instance of _InspectorCtrl + + registered ProgID + + + + returns all running Outlook._InspectorCtrl objects from the running object table(ROT) + + an Outlook._InspectorCtrl array + + + + returns a running Outlook._InspectorCtrl object from the running object table(ROT). the method takes the first element from the table + + an Outlook._InspectorCtrl object or null + + + + returns a running Outlook._InspectorCtrl object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook._InspectorCtrl object or null + + + + creates active sink helper + + + + + CoClass _DocSiteControl + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of _DocSiteControl + + + + + creates a new instance of _DocSiteControl + + registered ProgID + + + + returns all running Outlook._DocSiteControl objects from the running object table(ROT) + + an Outlook._DocSiteControl array + + + + returns a running Outlook._DocSiteControl object from the running object table(ROT). the method takes the first element from the table + + an Outlook._DocSiteControl object or null + + + + returns a running Outlook._DocSiteControl object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook._DocSiteControl object or null + + + + creates active sink helper + + + + + CoClass TaskRequestUpdateItem + SupportByVersion Outlook, 9,10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865401.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of TaskRequestUpdateItem + + + + + creates a new instance of TaskRequestUpdateItem + + registered ProgID + + + + returns all running Outlook.TaskRequestUpdateItem objects from the running object table(ROT) + + an Outlook.TaskRequestUpdateItem array + + + + returns a running Outlook.TaskRequestUpdateItem object from the running object table(ROT). the method takes the first element from the table + + an Outlook.TaskRequestUpdateItem object or null + + + + returns a running Outlook.TaskRequestUpdateItem object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.TaskRequestUpdateItem object or null + + + + creates active sink helper + + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866192.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867640.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863309.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869078.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868010.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864400.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869913.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868703.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868680.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865381.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868563.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869584.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866907.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865389.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862977.aspx + + + + SupportByVersion Outlook, 10,11,12,14,15 + + + + + SupportByVersion Outlook 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868597.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867670.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868619.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863936.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866702.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862984.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868104.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868435.aspx + + + + SupportByVersion Outlook, 14,15 + + + + + SupportByVersion Outlook 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860291.aspx + + + + SupportByVersion Outlook, 14,15 + + + + + SupportByVersion Outlook 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868903.aspx + + + + SupportByVersion Outlook, 15 + + + + + SupportByVersion Outlook 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/jj228681.aspx + + + + CoClass MailItem + SupportByVersion Outlook, 9,10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861332.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of MailItem + + + + + creates a new instance of MailItem + + registered ProgID + + + + returns all running Outlook.MailItem objects from the running object table(ROT) + + an Outlook.MailItem array + + + + returns a running Outlook.MailItem object from the running object table(ROT). the method takes the first element from the table + + an Outlook.MailItem object or null + + + + returns a running Outlook.MailItem object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.MailItem object or null + + + + creates active sink helper + + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865989.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862186.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865310.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862702.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867865.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866739.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869872.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860938.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869905.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865379.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868664.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870099.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868540.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868187.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868639.aspx + + + + SupportByVersion Outlook, 10,11,12,14,15 + + + + + SupportByVersion Outlook 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861266.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863737.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869219.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862669.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860316.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870101.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868564.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860949.aspx + + + + SupportByVersion Outlook, 14,15 + + + + + SupportByVersion Outlook 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869497.aspx + + + + SupportByVersion Outlook, 14,15 + + + + + SupportByVersion Outlook 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869691.aspx + + + + SupportByVersion Outlook, 15 + + + + + SupportByVersion Outlook 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/jj228313.aspx + + + + CoClass Explorer + SupportByVersion Outlook, 9,10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860356.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of Explorer + + + + + creates a new instance of Explorer + + registered ProgID + + + + returns all running Outlook.Explorer objects from the running object table(ROT) + + an Outlook.Explorer array + + + + returns a running Outlook.Explorer object from the running object table(ROT). the method takes the first element from the table + + an Outlook.Explorer object or null + + + + returns a running Outlook.Explorer object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.Explorer object or null + + + + creates active sink helper + + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867298.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865625.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868537.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868484.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865397.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866945.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869813.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862184.aspx + + + + SupportByVersion Outlook, 10,11,12,14,15 + + + + + SupportByVersion Outlook 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864743.aspx + + + + SupportByVersion Outlook, 10,11,12,14,15 + + + + + SupportByVersion Outlook 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868043.aspx + + + + SupportByVersion Outlook, 10,11,12,14,15 + + + + + SupportByVersion Outlook 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868815.aspx + + + + SupportByVersion Outlook, 10,11,12,14,15 + + + + + SupportByVersion Outlook 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862995.aspx + + + + SupportByVersion Outlook, 10,11,12,14,15 + + + + + SupportByVersion Outlook 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860454.aspx + + + + SupportByVersion Outlook, 10,11,12,14,15 + + + + + SupportByVersion Outlook 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867174.aspx + + + + SupportByVersion Outlook, 10,11,12,14,15 + + + + + SupportByVersion Outlook 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868366.aspx + + + + SupportByVersion Outlook, 14,15 + + + + + SupportByVersion Outlook 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867876.aspx + + + + SupportByVersion Outlook, 15 + + + + + SupportByVersion Outlook 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/jj229061.aspx + + + + DispatchInterface _OlkTextBox + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862394.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865079.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863023.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862377.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862440.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868074.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866250.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868847.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865385.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868029.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864717.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868498.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869920.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866952.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867178.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867387.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867135.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867613.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867099.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867214.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861805.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865375.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861589.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868710.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869253.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866944.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862087.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867726.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866220.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863462.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869133.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867432.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868770.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + + + + + DispatchInterface Link + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + Unknown COM Proxy + + + + + DispatchInterface UserProperty + SupportByVersion Outlook, 9,10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869073.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866204.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867374.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860645.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861632.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867592.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867684.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866711.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869252.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861334.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869898.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868216.aspx + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + Get + + + + + DispatchInterface Attachments + SupportByVersion Outlook, 9,10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864730.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869553.aspx + + object Source + optional object Type + optional object Position + optional object DisplayName + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869553.aspx + + object Source + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869553.aspx + + object Source + optional object Type + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869553.aspx + + object Source + optional object Type + optional object Position + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868839.aspx + + Int32 Index + + + + SupportByVersionAttribute Outlook, 9,10,11,12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersionAttribute Outlook, 9,10,11,12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864727.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862724.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868551.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869064.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869883.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + + object Index + + + + DispatchInterface _Inspectors + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870047.aspx + + object Item + + + + SupportByVersionAttribute Outlook, 9,10,11,12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersionAttribute Outlook, 9,10,11,12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867446.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862164.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863287.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869115.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869287.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + + object Index + + + + SupportByVersion Outlook 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864724.aspx + + + + SupportByVersion Outlook 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868872.aspx + + + + SupportByVersion Outlook 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 12, 14, 15 + + 3 + + + + SupportByVersion Outlook 12, 14, 15 + + 4 + + + + SupportByVersion Outlook 12, 14, 15 + + 5 + + + + SupportByVersion Outlook 12, 14, 15 + + 6 + + + + SupportByVersion Outlook 12, 14, 15 + + 7 + + + + SupportByVersion Outlook 12, 14, 15 + + 8 + + + + SupportByVersion Outlook 12, 14, 15 + + 9 + + + + SupportByVersion Outlook 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866018.aspx + + + + SupportByVersion Outlook 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867160.aspx + + + + SupportByVersion Outlook 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866922.aspx + + + + SupportByVersion Outlook 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870022.aspx + + + + SupportByVersion Outlook 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 12, 14, 15 + + 4 + + + + SupportByVersion Outlook 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/jj715724.aspx + + + + SupportByVersion Outlook 11, 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 11, 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 11, 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 11, 12, 14, 15 + + 3 + + + + SupportByVersion Outlook 11, 12, 14, 15 + + 4 + + + + SupportByVersion Outlook 11, 12, 14, 15 + + 5 + + + + SupportByVersion Outlook 11, 12, 14, 15 + + 6 + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + + 8 + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + + 9 + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + + 10 + + + + CoClass ContactsModule + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870108.aspx + + + + + DispatchInterface _ContactsModule + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866058.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860446.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864480.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868330.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866209.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866014.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863005.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867526.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869727.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of ContactsModule + + + + + creates a new instance of ContactsModule + + registered ProgID + + + + returns all running Outlook.ContactsModule objects from the running object table(ROT) + + an Outlook.ContactsModule array + + + + returns a running Outlook.ContactsModule object from the running object table(ROT). the method takes the first element from the table + + an Outlook.ContactsModule object or null + + + + returns a running Outlook.ContactsModule object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.ContactsModule object or null + + + + creates active sink helper + + + + + CoClass Rule + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869708.aspx + + + + + DispatchInterface _Rule + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864433.aspx + + optional object ShowProgress + optional object Folder + optional object IncludeSubfolders + optional object RuleExecuteOption + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864433.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864433.aspx + + optional object ShowProgress + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864433.aspx + + optional object ShowProgress + optional object Folder + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864433.aspx + + optional object ShowProgress + optional object Folder + optional object IncludeSubfolders + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867534.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868179.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866703.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869390.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866230.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860647.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866197.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868097.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864224.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862765.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869579.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867239.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of Rule + + + + + creates a new instance of Rule + + registered ProgID + + + + returns all running Outlook.Rule objects from the running object table(ROT) + + an Outlook.Rule array + + + + returns a running Outlook.Rule object from the running object table(ROT). the method takes the first element from the table + + an Outlook.Rule object or null + + + + returns a running Outlook.Rule object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.Rule object or null + + + + creates active sink helper + + + + + CoClass OlkDateControl + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868818.aspx + + + + + DispatchInterface _OlkDateControl + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866736.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870163.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869138.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868092.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868558.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869866.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868501.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868019.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868890.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869404.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866596.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868217.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864739.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861552.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868065.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870160.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862181.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869519.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of OlkDateControl + + + + + creates a new instance of OlkDateControl + + registered ProgID + + + + returns all running Outlook.OlkDateControl objects from the running object table(ROT) + + an Outlook.OlkDateControl array + + + + returns a running Outlook.OlkDateControl object from the running object table(ROT). the method takes the first element from the table + + an Outlook.OlkDateControl object or null + + + + returns a running Outlook.OlkDateControl object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.OlkDateControl object or null + + + + creates active sink helper + + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869739.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861813.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869518.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868326.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868492.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862109.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866191.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867492.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865350.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866753.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861622.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864198.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866407.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862404.aspx + + + + CoClass OlkTextBox + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867552.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of OlkTextBox + + + + + creates a new instance of OlkTextBox + + registered ProgID + + + + returns all running Outlook.OlkTextBox objects from the running object table(ROT) + + an Outlook.OlkTextBox array + + + + returns a running Outlook.OlkTextBox object from the running object table(ROT). the method takes the first element from the table + + an Outlook.OlkTextBox object or null + + + + returns a running Outlook.OlkTextBox object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.OlkTextBox object or null + + + + creates active sink helper + + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868548.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861869.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868623.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864226.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866264.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869484.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869710.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868368.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863915.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866420.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869076.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869973.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868860.aspx + + + + CoClass _PageWrapCtrl + SupportByVersion Outlook, 10 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of _PageWrapCtrl + + + + + creates a new instance of _PageWrapCtrl + + registered ProgID + + + + returns all running Outlook._PageWrapCtrl objects from the running object table(ROT) + + an Outlook._PageWrapCtrl array + + + + returns a running Outlook._PageWrapCtrl object from the running object table(ROT). the method takes the first element from the table + + an Outlook._PageWrapCtrl object or null + + + + returns a running Outlook._PageWrapCtrl object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook._PageWrapCtrl object or null + + + + creates active sink helper + + + + + CoClass NoteItem + SupportByVersion Outlook, 9,10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869487.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of NoteItem + + + + + creates a new instance of NoteItem + + registered ProgID + + + + returns all running Outlook.NoteItem objects from the running object table(ROT) + + an Outlook.NoteItem array + + + + returns a running Outlook.NoteItem object from the running object table(ROT). the method takes the first element from the table + + an Outlook.NoteItem object or null + + + + returns a running Outlook.NoteItem object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.NoteItem object or null + + + + creates active sink helper + + + + + CoClass Folders + SupportByVersion Outlook, 9,10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860950.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of Folders + + + + + creates a new instance of Folders + + registered ProgID + + + + returns all running Outlook.Folders objects from the running object table(ROT) + + an Outlook.Folders array + + + + returns a running Outlook.Folders object from the running object table(ROT). the method takes the first element from the table + + an Outlook.Folders object or null + + + + returns a running Outlook.Folders object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.Folders object or null + + + + creates active sink helper + + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869354.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869140.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867661.aspx + + + + CoClass Inspectors + SupportByVersion Outlook, 9,10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868697.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of Inspectors + + + + + creates a new instance of Inspectors + + registered ProgID + + + + returns all running Outlook.Inspectors objects from the running object table(ROT) + + an Outlook.Inspectors array + + + + returns a running Outlook.Inspectors object from the running object table(ROT). the method takes the first element from the table + + an Outlook.Inspectors object or null + + + + returns a running Outlook.Inspectors object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.Inspectors object or null + + + + creates active sink helper + + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867841.aspx + + + + CoClass DocumentItem + SupportByVersion Outlook, 9,10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866928.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of DocumentItem + + + + + creates a new instance of DocumentItem + + registered ProgID + + + + returns all running Outlook.DocumentItem objects from the running object table(ROT) + + an Outlook.DocumentItem array + + + + returns a running Outlook.DocumentItem object from the running object table(ROT). the method takes the first element from the table + + an Outlook.DocumentItem object or null + + + + returns a running Outlook.DocumentItem object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.DocumentItem object or null + + + + creates active sink helper + + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869663.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869809.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861289.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863623.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861319.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869749.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869425.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862733.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868691.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867100.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868539.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860659.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862370.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864394.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865084.aspx + + + + SupportByVersion Outlook, 10,11,12,14,15 + + + + + SupportByVersion Outlook 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866473.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869067.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869141.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866045.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862392.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860740.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869637.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863656.aspx + + + + SupportByVersion Outlook, 14,15 + + + + + SupportByVersion Outlook 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865392.aspx + + + + SupportByVersion Outlook, 14,15 + + + + + SupportByVersion Outlook 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870043.aspx + + + + SupportByVersion Outlook, 15 + + + + + SupportByVersion Outlook 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/jj228964.aspx + + + + CoClass Application + SupportByVersion Outlook, 9,10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866895.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of Application + + + + + creates a new instance of Application + + registered ProgID + + + + NetOffice method: dispose instance and all child instances + + dispose event exported proxies with one or more event recipients + + + + NetOffice method: dispose instance and all child instances + + + + + returns all running Outlook.Application objects from the running object table(ROT) + + an Outlook.Application array + + + + returns a running Outlook.Application object from the running object table(ROT). the method takes the first element from the table + + an Outlook.Application object or null + + + + returns a running Outlook.Application object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.Application object or null + + + + creates active sink helper + + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865076.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869202.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870058.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868446.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869298.aspx + + + + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + + SupportByVersion Outlook 9 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869760.aspx + + + + SupportByVersion Outlook, 10,11,12,14,15 + + + + + SupportByVersion Outlook 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864775.aspx + + + + SupportByVersion Outlook, 10,11,12,14,15 + + + + + SupportByVersion Outlook 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868266.aspx + + + + SupportByVersion Outlook, 10,11,12,14,15 + + + + + SupportByVersion Outlook 10 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869443.aspx + + + + SupportByVersion Outlook, 11,12,14,15 + + + + + SupportByVersion Outlook 11 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863686.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868544.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869543.aspx + + + + DispatchInterface _NavigationGroups + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865651.aspx + + string GroupDisplayName + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868687.aspx + + NetOffice.OutlookApi.NavigationGroup Group + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868509.aspx + + NetOffice.OutlookApi.Enums.OlGroupType DefaultFolderGroup + + + + SupportByVersionAttribute Outlook, 12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersionAttribute Outlook, 12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867170.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865787.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868713.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869155.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866240.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + + + object Index + + + + DispatchInterface _PropertyAccessor + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868350.aspx + + string SchemaName + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862751.aspx + + string SchemaName + object Value + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869865.aspx + + object SchemaNames + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868862.aspx + + object SchemaNames + object Values + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868342.aspx + + DateTime Value + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868909.aspx + + DateTime Value + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862123.aspx + + string Value + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864468.aspx + + object Value + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868076.aspx + + string SchemaName + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869707.aspx + + object SchemaNames + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865030.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869821.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869435.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866730.aspx + Unknown COM Proxy + + + + + DispatchInterface _OlkListBox + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862423.aspx + + Int32 Index + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867856.aspx + + Int32 Index + string Item + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869863.aspx + + Int32 Index + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869797.aspx + + Int32 Index + bool Selected + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861623.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868416.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860355.aspx + + string ItemText + optional object Index + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860355.aspx + + string ItemText + + + + SupportByVersion Outlook 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870175.aspx + + Int32 Index + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869248.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868462.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866980.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866035.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861935.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868819.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863398.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863955.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868768.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863324.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865580.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862091.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867574.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865373.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866036.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867090.aspx + + + + + DispatchInterface _OlkCommandButton + SupportByVersion Outlook, 12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869007.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866438.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868799.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862366.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869567.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868578.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869510.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868172.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864758.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866050.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864430.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862171.aspx + + + + + DispatchInterface Pages + SupportByVersion Outlook, 9,10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869772.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864465.aspx + + optional object Name + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864465.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862212.aspx + + Int32 Index + + + + SupportByVersionAttribute Outlook, 9,10,11,12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersionAttribute Outlook, 9,10,11,12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861598.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864422.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869177.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866038.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869854.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + + object Index + + + + DispatchInterface Recipients + SupportByVersion Outlook, 9,10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866751.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866951.aspx + + string Name + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869956.aspx + + Int32 Index + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867165.aspx + + + + + SupportByVersionAttribute Outlook, 9,10,11,12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersionAttribute Outlook, 9,10,11,12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869689.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869382.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864188.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868053.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863927.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + + object Index + + + + DispatchInterface PropertyPages + SupportByVersion Outlook, 9,10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868016.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867323.aspx + + object Page + optional string Title + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867323.aspx + + object Page + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865610.aspx + + object Index + + + + SupportByVersionAttribute Outlook, 9,10,11,12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersionAttribute Outlook, 9,10,11,12,14,15 + This is a custom enumerator from NetOffice + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861542.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868844.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860756.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869741.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862774.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + + object Index + + + + DispatchInterface Action + SupportByVersion Outlook, 9,10,11,12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862381.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867879.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862718.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870055.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869153.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869212.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862683.aspx + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864732.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860700.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868265.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869541.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867161.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868788.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866224.aspx + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865821.aspx + + + + + SupportByVersion Outlook 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864384.aspx + + + + SupportByVersion Outlook 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868624.aspx + + + + SupportByVersion Outlook 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 12, 14, 15 + + 3 + + + + SupportByVersion Outlook 12, 14, 15 + + 4 + + + + SupportByVersion Outlook 12, 14, 15 + + 5 + + + + SupportByVersion Outlook 12, 14, 15 + + 6 + + + + SupportByVersion Outlook 12, 14, 15 + + 7 + + + + SupportByVersion Outlook 12, 14, 15 + + 8 + + + + SupportByVersion Outlook 12, 14, 15 + + 9 + + + + SupportByVersion Outlook 12, 14, 15 + + 10 + + + + SupportByVersion Outlook 12, 14, 15 + + 11 + + + + SupportByVersion Outlook 12, 14, 15 + + 12 + + + + SupportByVersion Outlook 12, 14, 15 + + 13 + + + + SupportByVersion Outlook 12, 14, 15 + + 14 + + + + SupportByVersion Outlook 12, 14, 15 + + 15 + + + + SupportByVersion Outlook 12, 14, 15 + + 16 + + + + SupportByVersion Outlook 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869349.aspx + + + + SupportByVersion Outlook 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 12, 14, 15 + + 3 + + + + SupportByVersion Outlook 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863417.aspx + + + + SupportByVersion Outlook 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 12, 14, 15 + + 3 + + + + SupportByVersion Outlook 12, 14, 15 + + 4 + + + + SupportByVersion Outlook 12, 14, 15 + + 5 + + + + SupportByVersion Outlook 12, 14, 15 + + 6 + + + + SupportByVersion Outlook 12, 14, 15 + + 7 + + + + SupportByVersion Outlook 12, 14, 15 + + 8 + + + + SupportByVersion Outlook 12, 14, 15 + + 9 + + + + SupportByVersion Outlook 12, 14, 15 + + 10 + + + + SupportByVersion Outlook 12, 14, 15 + + 11 + + + + SupportByVersion Outlook 12, 14, 15 + + 12 + + + + SupportByVersion Outlook 12, 14, 15 + + 13 + + + + SupportByVersion Outlook 12, 14, 15 + + 14 + + + + SupportByVersion Outlook 12, 14, 15 + + 15 + + + + SupportByVersion Outlook 12, 14, 15 + + 16 + + + + SupportByVersion Outlook 12, 14, 15 + + 17 + + + + SupportByVersion Outlook 12, 14, 15 + + 18 + + + + SupportByVersion Outlook 12, 14, 15 + + 19 + + + + SupportByVersion Outlook 12, 14, 15 + + 20 + + + + SupportByVersion Outlook 12, 14, 15 + + 21 + + + + SupportByVersion Outlook 12, 14, 15 + + 22 + + + + SupportByVersion Outlook 12, 14, 15 + + 23 + + + + SupportByVersion Outlook 12, 14, 15 + + 24 + + + + SupportByVersion Outlook 12, 14, 15 + + 25 + + + + SupportByVersion Outlook 12, 14, 15 + + 26 + + + + SupportByVersion Outlook 12, 14, 15 + + 27 + + + + SupportByVersion Outlook 12, 14, 15 + + 28 + + + + SupportByVersion Outlook 12, 14, 15 + + 29 + + + + SupportByVersion Outlook 12, 14, 15 + + 30 + + + + SupportByVersion Outlook 12, 14, 15 + + 31 + + + + SupportByVersion Outlook 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868356.aspx + + + + SupportByVersion Outlook 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 12, 14, 15 + + 3 + + + + SupportByVersion Outlook 12, 14, 15 + + 4 + + + + SupportByVersion Outlook 14, 15 + + 5 + + + + SupportByVersion Outlook 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864784.aspx + + + + SupportByVersion Outlook 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865075.aspx + + + + SupportByVersion Outlook 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868281.aspx + + + + SupportByVersion Outlook 11, 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 11, 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 11, 12, 14, 15 + + 3 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869294.aspx + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 1 + + + + CoClass NavigationGroups + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860649.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of NavigationGroups + + + + + creates a new instance of NavigationGroups + + registered ProgID + + + + returns all running Outlook.NavigationGroups objects from the running object table(ROT) + + an Outlook.NavigationGroups array + + + + returns a running Outlook.NavigationGroups object from the running object table(ROT). the method takes the first element from the table + + an Outlook.NavigationGroups object or null + + + + returns a running Outlook.NavigationGroups object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.NavigationGroups object or null + + + + creates active sink helper + + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869729.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868621.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862126.aspx + + + + CoClass ExchangeUser + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866281.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of ExchangeUser + + + + + creates a new instance of ExchangeUser + + registered ProgID + + + + returns all running Outlook.ExchangeUser objects from the running object table(ROT) + + an Outlook.ExchangeUser array + + + + returns a running Outlook.ExchangeUser object from the running object table(ROT). the method takes the first element from the table + + an Outlook.ExchangeUser object or null + + + + returns a running Outlook.ExchangeUser object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.ExchangeUser object or null + + + + creates active sink helper + + + + + CoClass PropertyAccessor + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863046.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of PropertyAccessor + + + + + creates a new instance of PropertyAccessor + + registered ProgID + + + + returns all running Outlook.PropertyAccessor objects from the running object table(ROT) + + an Outlook.PropertyAccessor array + + + + returns a running Outlook.PropertyAccessor object from the running object table(ROT). the method takes the first element from the table + + an Outlook.PropertyAccessor object or null + + + + returns a running Outlook.PropertyAccessor object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.PropertyAccessor object or null + + + + creates active sink helper + + + + + CoClass OlkCategory + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869980.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of OlkCategory + + + + + creates a new instance of OlkCategory + + registered ProgID + + + + returns all running Outlook.OlkCategory objects from the running object table(ROT) + + an Outlook.OlkCategory array + + + + returns a running Outlook.OlkCategory object from the running object table(ROT). the method takes the first element from the table + + an Outlook.OlkCategory object or null + + + + returns a running Outlook.OlkCategory object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.OlkCategory object or null + + + + creates active sink helper + + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866040.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861328.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869033.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865335.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868230.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869676.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868801.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869464.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861572.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869167.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff867627.aspx + + + + CoClass OlkListBox + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863585.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of OlkListBox + + + + + creates a new instance of OlkListBox + + registered ProgID + + + + returns all running Outlook.OlkListBox objects from the running object table(ROT) + + an Outlook.OlkListBox array + + + + returns a running Outlook.OlkListBox object from the running object table(ROT). the method takes the first element from the table + + an Outlook.OlkListBox object or null + + + + returns a running Outlook.OlkListBox object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.OlkListBox object or null + + + + creates active sink helper + + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866067.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866412.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869274.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868747.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870174.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870045.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866452.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868095.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866003.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff866774.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868533.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861330.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862397.aspx + + + + CoClass OlkCommandButton + SupportByVersion Outlook, 12,14,15 + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868781.aspx + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + + creates a new instance of OlkCommandButton + + + + + creates a new instance of OlkCommandButton + + registered ProgID + + + + returns all running Outlook.OlkCommandButton objects from the running object table(ROT) + + an Outlook.OlkCommandButton array + + + + returns a running Outlook.OlkCommandButton object from the running object table(ROT). the method takes the first element from the table + + an Outlook.OlkCommandButton object or null + + + + returns a running Outlook.OlkCommandButton object from the running object table(ROT). the method takes the first element from the table + + throw an exception if no object was found + an Outlook.OlkCommandButton object or null + + + + creates active sink helper + + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863427.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869593.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868329.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff862982.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860671.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868553.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff868836.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865822.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869029.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865850.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863036.aspx + + + + SupportByVersion Outlook, 12,14,15 + + + + + SupportByVersion Outlook 12 14 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865606.aspx + + + + Interface _IInspectorCtrl + SupportByVersion Outlook, 10 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 10 + + + object pdispItem + + + + SupportByVersion Outlook 10 + Get/Set + + + + + SupportByVersion Outlook 10 + Get + Unknown COM Proxy + + + + + Interface _IRecipientControl + SupportByVersion Outlook, 9,10,11,12,14,15 + + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + + + object there has created the proxy + inner wrapped COM proxy + + + current used factory core + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object there has created the proxy + inner wrapped COM proxy + Type of inner wrapped COM proxy" + + + object to replaced. replacedObject are not usable after this action + + + registered ProgID + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + Unknown COM Proxy + + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + Get/Set + + + + + SupportByVersion Outlook 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865049.aspx + + + + SupportByVersion Outlook 14, 15 + + 0 + + + + SupportByVersion Outlook 14, 15 + + 1 + + + + SupportByVersion Outlook 14, 15 + + 2 + + + + SupportByVersion Outlook 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff870051.aspx + + + + SupportByVersion Outlook 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff860420.aspx + + + + SupportByVersion Outlook 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 12, 14, 15 + + 3 + + + + SupportByVersion Outlook 12, 14, 15 + + 4 + + + + SupportByVersion Outlook 12, 14, 15 + + 5 + + + + SupportByVersion Outlook 12, 14, 15 + + 6 + + + + SupportByVersion Outlook 12, 14, 15 + + 7 + + + + SupportByVersion Outlook 12, 14, 15 + + 8 + + + + SupportByVersion Outlook 12, 14, 15 + + 9 + + + + SupportByVersion Outlook 12, 14, 15 + + 10 + + + + SupportByVersion Outlook 12, 14, 15 + + 11 + + + + SupportByVersion Outlook 12, 14, 15 + + 12 + + + + SupportByVersion Outlook 12, 14, 15 + + 13 + + + + SupportByVersion Outlook 12, 14, 15 + + 14 + + + + SupportByVersion Outlook 12, 14, 15 + + 15 + + + + SupportByVersion Outlook 12, 14, 15 + + 16 + + + + SupportByVersion Outlook 12, 14, 15 + + 17 + + + + SupportByVersion Outlook 12, 14, 15 + + 18 + + + + SupportByVersion Outlook 12, 14, 15 + + 19 + + + + SupportByVersion Outlook 12, 14, 15 + + 20 + + + + SupportByVersion Outlook 12, 14, 15 + + 21 + + + + SupportByVersion Outlook 12, 14, 15 + + 22 + + + + SupportByVersion Outlook 12, 14, 15 + + 23 + + + + SupportByVersion Outlook 12, 14, 15 + + 24 + + + + SupportByVersion Outlook 12, 14, 15 + + 25 + + + + SupportByVersion Outlook 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff869264.aspx + + + + SupportByVersion Outlook 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861336.aspx + + + + SupportByVersion Outlook 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff863639.aspx + + + + SupportByVersion Outlook 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865040.aspx + + + + SupportByVersion Outlook 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 12, 14, 15 + + 3 + + + + SupportByVersion Outlook 12, 14, 15 + + 6 + + + + SupportByVersion Outlook 12, 14, 15 + + 7 + + + + SupportByVersion Outlook 12, 14, 15 + + 8 + + + + SupportByVersion Outlook 12, 14, 15 + + 9 + + + + SupportByVersion Outlook 12, 14, 15 + + 10 + + + + SupportByVersion Outlook 12, 14, 15 + + 11 + + + + SupportByVersion Outlook 12, 14, 15 + + 12 + + + + SupportByVersion Outlook 12, 14, 15 + + 13 + + + + SupportByVersion Outlook 12, 14, 15 + + 14 + + + + SupportByVersion Outlook 12, 14, 15 + + 15 + + + + SupportByVersion Outlook 12, 14, 15 + + 99 + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff864792.aspx + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 10, 11, 12, 14, 15 + + 3 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff861908.aspx + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 2 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff865604.aspx + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 0 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 1 + + + + SupportByVersion Outlook 9, 10, 11, 12, 14, 15 + + 2 + + + diff --git a/plugin_outlook/static/openerp-outlook-plugin/packages/NetOffice.Outlook.Net35.1.7.2.0/tools/install.ps1 b/plugin_outlook/static/openerp-outlook-plugin/packages/NetOffice.Outlook.Net35.1.7.2.0/tools/install.ps1 new file mode 100644 index 00000000..c24ba719 --- /dev/null +++ b/plugin_outlook/static/openerp-outlook-plugin/packages/NetOffice.Outlook.Net35.1.7.2.0/tools/install.ps1 @@ -0,0 +1,7 @@ +param($installPath, $toolsPath, $package, $project) + +$ref = $project.Object.References.Item("OutlookApi") +if ($ref -and $ref.EmbedInteropTypes) +{ + $ref.EmbedInteropTypes = $false +} diff --git a/plugin_outlook/static/openerp-outlook-plugin/packages/repositories.config b/plugin_outlook/static/openerp-outlook-plugin/packages/repositories.config new file mode 100644 index 00000000..a2d11c85 --- /dev/null +++ b/plugin_outlook/static/openerp-outlook-plugin/packages/repositories.config @@ -0,0 +1,4 @@ + + + + \ No newline at end of file