├── BuildTools ├── NOBuildTools.sln ├── ReferenceAnalyzer │ ├── ExceptionDisplayer.cs │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── NOBuildTools.ReferenceAnalyzer.csproj │ ├── Parser.cs │ ├── Program.cs │ └── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings ├── SearchAndReplace │ ├── ConfigManager.cs │ ├── ExceptionDisplayer.cs │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── NOBuildTools.SearchAndReplace.csproj │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── SearchAndReplaceManager.cs ├── SourceUpdater │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── NOBuildTools.SourceUpdater.csproj │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── app.config └── VersionUpdater │ ├── ConfigManager.cs │ ├── ExceptionDisplayer.cs │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── NOBuildTools.VersionUpdater.csproj │ ├── Program.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ └── app.config ├── Examples ├── Access │ ├── C# │ │ ├── IExtensibility COMAddin Examples │ │ │ ├── ClassicUI │ │ │ │ ├── Addin.cs │ │ │ │ ├── IDTExtensibility2 - ClassicUI.csproj │ │ │ │ └── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── IExtensibility Access Addin Examples.sln │ │ │ ├── RibbonUI │ │ │ │ ├── Addin.cs │ │ │ │ ├── IDTExtensibility2 - RibbonUI.csproj │ │ │ │ ├── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ └── RibbonUI.xml │ │ │ └── TaskPane │ │ │ │ ├── Addin.cs │ │ │ │ ├── IDTExtensibility2 - Taskpane.csproj │ │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── SampleControl.Designer.cs │ │ │ │ ├── SampleControl.cs │ │ │ │ ├── SampleControl.resx │ │ │ │ └── SampleData │ │ │ │ ├── Customer.cs │ │ │ │ └── CustomerData.xml │ │ ├── NetOffice COMAddin Examples │ │ │ ├── Extended │ │ │ │ ├── Addin.cs │ │ │ │ ├── Images │ │ │ │ │ ├── about.png │ │ │ │ │ ├── alarmclock_run.png │ │ │ │ │ ├── alarmclock_stop.png │ │ │ │ │ └── delete2.png │ │ │ │ ├── NetOffice Tools - Extended.csproj │ │ │ │ ├── Properties │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ └── Resources.resx │ │ │ │ ├── RibbonUI.xml │ │ │ │ ├── SamplePane.Designer.cs │ │ │ │ ├── SamplePane.cs │ │ │ │ └── SamplePane.resx │ │ │ ├── NetOffice Access Addin Examples.sln │ │ │ ├── Simple │ │ │ │ ├── Addin.cs │ │ │ │ ├── NetOffice Tools - Simple.csproj │ │ │ │ └── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ └── Tweaks │ │ │ │ ├── Addin.cs │ │ │ │ ├── NetOffice Tools - Tweaks.csproj │ │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ ├── Standard Examples │ │ │ ├── AccessExamples.sln │ │ │ └── AccessExamples │ │ │ │ ├── AccessExamples CSharp.csproj │ │ │ │ ├── Examples │ │ │ │ ├── Example01.cs │ │ │ │ ├── Example02.cs │ │ │ │ ├── Example03.cs │ │ │ │ ├── Example04.Designer.cs │ │ │ │ ├── Example04.cs │ │ │ │ ├── Example04.resx │ │ │ │ ├── Example05.Designer.cs │ │ │ │ ├── Example05.cs │ │ │ │ └── Example05.resx │ │ │ │ ├── FormMain.Designer.cs │ │ │ │ ├── FormMain.cs │ │ │ │ ├── Overview.txt │ │ │ │ ├── Program.cs │ │ │ │ └── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ └── What means the 3 folders.txt │ └── VB │ │ ├── IExtensibility COMAddin Examples │ │ ├── ClassicUI │ │ │ ├── Addin.vb │ │ │ ├── IDTExtensibility2 - ClassicUI.vbproj │ │ │ └── My Project │ │ │ │ ├── Application.Designer.vb │ │ │ │ ├── Application.myapp │ │ │ │ ├── AssemblyInfo.vb │ │ │ │ ├── Resources.Designer.vb │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.vb │ │ │ │ └── Settings.settings │ │ ├── IExtensibility Access Addin Examples.sln │ │ ├── RibbonUI │ │ │ ├── Addin.vb │ │ │ ├── IDTExtensibility2 - RibbonUI.vbproj │ │ │ ├── My Project │ │ │ │ ├── Application.Designer.vb │ │ │ │ ├── Application.myapp │ │ │ │ ├── AssemblyInfo.vb │ │ │ │ ├── Resources.Designer.vb │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.vb │ │ │ │ └── Settings.settings │ │ │ └── RibbonUI.xml │ │ └── TaskPane │ │ │ ├── Addin.vb │ │ │ ├── IDTExtensibility2 - Taskpane.vbproj │ │ │ ├── My Project │ │ │ ├── Application.Designer.vb │ │ │ ├── Application.myapp │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ │ ├── SampleControl.Designer.vb │ │ │ ├── SampleControl.resx │ │ │ ├── SampleControl.vb │ │ │ └── SampleData │ │ │ ├── Customer.vb │ │ │ └── CustomerData.xml │ │ ├── NetOffice COMAddin Examples │ │ ├── Extended │ │ │ ├── Addin.vb │ │ │ ├── Images │ │ │ │ ├── about.png │ │ │ │ ├── alarmclock_run.png │ │ │ │ ├── alarmclock_stop.png │ │ │ │ └── delete2.png │ │ │ ├── My Project │ │ │ │ ├── Application.Designer.vb │ │ │ │ ├── Application.myapp │ │ │ │ ├── AssemblyInfo.vb │ │ │ │ ├── Resources.Designer.vb │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.vb │ │ │ │ └── Settings.settings │ │ │ ├── NetOffice Tools - Extended.vbproj │ │ │ ├── RibbonUI.xml │ │ │ ├── SamplePane.Designer.vb │ │ │ ├── SamplePane.resx │ │ │ └── SamplePane.vb │ │ ├── NetOffice Access Addin Examples.sln │ │ ├── Simple │ │ │ ├── Addin.vb │ │ │ ├── My Project │ │ │ │ ├── Application.Designer.vb │ │ │ │ ├── Application.myapp │ │ │ │ ├── AssemblyInfo.vb │ │ │ │ ├── Resources.Designer.vb │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.vb │ │ │ │ └── Settings.settings │ │ │ └── NetOffice Tools - Simple.vbproj │ │ └── Tweaks │ │ │ ├── Addin.vb │ │ │ ├── My Project │ │ │ ├── Application.Designer.vb │ │ │ ├── Application.myapp │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ │ └── NetOffice Tools - Tweaks.vbproj │ │ ├── Standard Examples │ │ ├── AccessExamples.sln │ │ └── AccessExamples │ │ │ ├── AccessExamples VB.vbproj │ │ │ ├── Examples │ │ │ ├── Example01.vb │ │ │ ├── Example02.vb │ │ │ ├── Example03.vb │ │ │ ├── Example04.Designer.vb │ │ │ ├── Example04.resx │ │ │ ├── Example04.vb │ │ │ ├── Example05.Designer.vb │ │ │ ├── Example05.resx │ │ │ └── Example05.vb │ │ │ ├── FormMain.Designer.vb │ │ │ ├── FormMain.resx │ │ │ ├── FormMain.vb │ │ │ ├── My Project │ │ │ ├── Application.Designer.vb │ │ │ ├── Application.myapp │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ │ └── Overview.txt │ │ └── What means the 3 folders.txt ├── AddinRemovalTool │ ├── AddinRemovalTool.sln │ ├── AddinRemovalTool │ │ ├── AddinEntry.cs │ │ ├── AddinRemovalTool.csproj │ │ ├── AddinSearcher.cs │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── NetOffice.Icon.32x32.ico │ │ ├── Program.cs │ │ └── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ ├── AddinRemovalToolUpdater │ │ ├── AddinRemovalToolUpdater.csproj │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── Program.cs │ │ └── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ └── WhatsThis.txt ├── ExampleBase │ ├── ExampleBase.sln │ └── ExampleBase │ │ ├── ExampleBase.csproj │ │ ├── FormBase.Designer.cs │ │ ├── FormBase.cs │ │ ├── FormBase.resx │ │ ├── FormBase.txt │ │ ├── FormError.Designer.cs │ │ ├── FormError.cs │ │ ├── FormError.resx │ │ ├── FormFinish.Designer.cs │ │ ├── FormFinish.cs │ │ ├── FormFinish.resx │ │ ├── FormOptions.Designer.cs │ │ ├── FormOptions.cs │ │ ├── FormOptions.resx │ │ ├── IExample.cs │ │ ├── IHost.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── Translator.cs ├── Excel │ ├── C# │ │ ├── IExtensibility COMAddin Examples │ │ │ ├── ClassicUI │ │ │ │ ├── Addin.cs │ │ │ │ ├── IDTExtensibility2 - ClassicUI.csproj │ │ │ │ └── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── IExtensibility Excel Addin Examples.sln │ │ │ ├── RibbonUI │ │ │ │ ├── Addin.cs │ │ │ │ ├── IDTExtensibility2 - RibbonUI.csproj │ │ │ │ ├── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ └── RibbonUI.xml │ │ │ └── TaskPane │ │ │ │ ├── Addin.cs │ │ │ │ ├── IDTExtensibility2 - Taskpane.csproj │ │ │ │ ├── NetOffice.Icon.16x16.ico │ │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ └── Resources.resx │ │ │ │ ├── SampleControl.Designer.cs │ │ │ │ ├── SampleControl.cs │ │ │ │ ├── SampleControl.resx │ │ │ │ ├── SampleData │ │ │ │ ├── Customer.cs │ │ │ │ └── CustomerData.xml │ │ │ │ ├── details.png │ │ │ │ ├── help.png │ │ │ │ ├── list.png │ │ │ │ ├── search.png │ │ │ │ └── user.png │ │ ├── NetOffice COMAddin Examples │ │ │ ├── Extended │ │ │ │ ├── Addin.cs │ │ │ │ ├── Images │ │ │ │ │ ├── Thumbs.db │ │ │ │ │ ├── about.png │ │ │ │ │ ├── alarmclock_run.png │ │ │ │ │ ├── alarmclock_stop.png │ │ │ │ │ └── delete2.png │ │ │ │ ├── NetOffice Tools - Extended.csproj │ │ │ │ ├── Properties │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ └── Resources.resx │ │ │ │ ├── RibbonUI.xml │ │ │ │ ├── SamplePane.Designer.cs │ │ │ │ ├── SamplePane.cs │ │ │ │ └── SamplePane.resx │ │ │ ├── NetOffice Excel Addin Examples.sln │ │ │ ├── Simple │ │ │ │ ├── Addin.cs │ │ │ │ ├── NetOffice Tools - Simple.csproj │ │ │ │ └── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ └── Tweaks │ │ │ │ ├── Addin.cs │ │ │ │ ├── NetOffice Tools - Tweaks.csproj │ │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ ├── Standard Examples │ │ │ ├── ExcelExamples.sln │ │ │ └── ExcelExamples │ │ │ │ ├── Examples │ │ │ │ ├── Example01.cs │ │ │ │ ├── Example02.cs │ │ │ │ ├── Example03.cs │ │ │ │ ├── Example04.cs │ │ │ │ ├── Example05.cs │ │ │ │ ├── Example06.Designer.cs │ │ │ │ ├── Example06.cs │ │ │ │ ├── Example06.resx │ │ │ │ ├── Example07.cs │ │ │ │ ├── Example08.Designer.cs │ │ │ │ ├── Example08.cs │ │ │ │ ├── Example08.resx │ │ │ │ ├── Example09.Designer.cs │ │ │ │ ├── Example09.cs │ │ │ │ ├── Example09.resx │ │ │ │ └── Example10.cs │ │ │ │ ├── ExcelExamples CSharp.csproj │ │ │ │ ├── FormMain.Designer.cs │ │ │ │ ├── FormMain.cs │ │ │ │ ├── Overview.txt │ │ │ │ ├── Program.cs │ │ │ │ └── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ └── What means the 3 folders.txt │ └── VB │ │ ├── IExtensibility COMAddin Examples │ │ ├── ClassicUI │ │ │ ├── Addin.vb │ │ │ ├── IDTExtensibility2 - ClassicUI.vbproj │ │ │ └── My Project │ │ │ │ ├── Application.Designer.vb │ │ │ │ ├── Application.myapp │ │ │ │ ├── AssemblyInfo.vb │ │ │ │ ├── Resources.Designer.vb │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.vb │ │ │ │ └── Settings.settings │ │ ├── IExtensibility Excel Addin Examples.sln │ │ ├── RibbonUI │ │ │ ├── Addin.vb │ │ │ ├── IDTExtensibility2 - RibbonUI.vbproj │ │ │ ├── My Project │ │ │ │ ├── Application.Designer.vb │ │ │ │ ├── Application.myapp │ │ │ │ ├── AssemblyInfo.vb │ │ │ │ ├── Resources.Designer.vb │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.vb │ │ │ │ └── Settings.settings │ │ │ └── RibbonUI.xml │ │ └── TaskPane │ │ │ ├── Addin.vb │ │ │ ├── IDTExtensibility2 - Taskpane.vbproj │ │ │ ├── My Project │ │ │ ├── Application.Designer.vb │ │ │ ├── Application.myapp │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ │ ├── SampleControl.Designer.vb │ │ │ ├── SampleControl.resx │ │ │ ├── SampleControl.vb │ │ │ └── SampleData │ │ │ ├── Customer.vb │ │ │ └── CustomerData.xml │ │ ├── NetOffice COMAddin Examples │ │ ├── Extended │ │ │ ├── Addin.vb │ │ │ ├── Images │ │ │ │ ├── about.png │ │ │ │ ├── alarmclock_run.png │ │ │ │ ├── alarmclock_stop.png │ │ │ │ └── delete2.png │ │ │ ├── My Project │ │ │ │ ├── Application.Designer.vb │ │ │ │ ├── Application.myapp │ │ │ │ ├── AssemblyInfo.vb │ │ │ │ ├── Resources.Designer.vb │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.vb │ │ │ │ └── Settings.settings │ │ │ ├── NetOffice Tools - Extended.vbproj │ │ │ ├── RibbonUI.xml │ │ │ ├── SamplePane.Designer.vb │ │ │ ├── SamplePane.resx │ │ │ └── SamplePane.vb │ │ ├── NetOffice Excel Addin Examples.sln │ │ ├── Simple │ │ │ ├── Addin.vb │ │ │ ├── My Project │ │ │ │ ├── Application.Designer.vb │ │ │ │ ├── Application.myapp │ │ │ │ ├── AssemblyInfo.vb │ │ │ │ ├── Resources.Designer.vb │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.vb │ │ │ │ └── Settings.settings │ │ │ └── NetOffice Tools - Simple.vbproj │ │ └── Tweaks │ │ │ ├── Addin.vb │ │ │ ├── My Project │ │ │ ├── Application.Designer.vb │ │ │ ├── Application.myapp │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ │ └── NetOffice Tools - Tweaks.vbproj │ │ ├── Standard Examples │ │ ├── ExcelExamples.sln │ │ └── ExcelExamples │ │ │ ├── Examples │ │ │ ├── Example01.vb │ │ │ ├── Example02.vb │ │ │ ├── Example03.vb │ │ │ ├── Example04.vb │ │ │ ├── Example05.vb │ │ │ ├── Example06.Designer.vb │ │ │ ├── Example06.resx │ │ │ ├── Example06.vb │ │ │ ├── Example07.vb │ │ │ ├── Example08.Designer.vb │ │ │ ├── Example08.resx │ │ │ ├── Example08.vb │ │ │ ├── Example09.Designer.vb │ │ │ ├── Example09.resx │ │ │ └── Example09.vb │ │ │ ├── ExcelExamples VB.vbproj │ │ │ ├── FormMain.Designer.vb │ │ │ ├── FormMain.resx │ │ │ ├── FormMain.vb │ │ │ ├── My Project │ │ │ ├── Application.Designer.vb │ │ │ ├── Application.myapp │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ │ └── Overview.txt │ │ └── What means the 3 folders.txt ├── Misc │ ├── C# │ │ ├── COMAddin Examples │ │ │ ├── Misc Addin Examples.sln │ │ │ ├── NetOfficeTools SuperAddin │ │ │ │ ├── Addin.cs │ │ │ │ ├── NetOffice Tools - SuperAddin.csproj │ │ │ │ ├── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ └── RibbonUI.xml │ │ │ ├── Readme.txt │ │ │ └── SuperAddin │ │ │ │ ├── Addin.cs │ │ │ │ ├── AddinUI.cs │ │ │ │ ├── IDTExtensibility2 - SuperAddin.csproj │ │ │ │ ├── OfficeRegistry.cs │ │ │ │ ├── Properties │ │ │ │ ├── AddinIcon.ico │ │ │ │ └── AssemblyInfo.cs │ │ │ │ └── RibbonUI.xml │ │ └── Examples │ │ │ ├── MiscExamples.sln │ │ │ └── MiscExamples │ │ │ ├── Examples │ │ │ ├── Example01.cs │ │ │ ├── Example02.cs │ │ │ ├── Example03.Designer.cs │ │ │ ├── Example03.cs │ │ │ └── Example03.resx │ │ │ ├── FormMain.Designer.cs │ │ │ ├── FormMain.cs │ │ │ ├── MiscExamples CSharp.csproj │ │ │ ├── Overview.txt │ │ │ ├── Program.cs │ │ │ └── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ └── VB │ │ ├── COMAddin Examples │ │ ├── Misc Addin Examples.sln │ │ ├── NetOfficeTools SuperAddin │ │ │ ├── Addin.vb │ │ │ ├── My Project │ │ │ │ ├── Application.Designer.vb │ │ │ │ ├── Application.myapp │ │ │ │ ├── AssemblyInfo.vb │ │ │ │ ├── Resources.Designer.vb │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.vb │ │ │ │ └── Settings.settings │ │ │ ├── NetOfficeTools - SuperAddin.vbproj │ │ │ └── RibbonUI.xml │ │ ├── Readme.txt │ │ └── SuperAddin │ │ │ ├── Addin.vb │ │ │ ├── IDTExtensibility2 - SuperAddin.vbproj │ │ │ ├── My Project │ │ │ ├── Application.Designer.vb │ │ │ ├── Application.myapp │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ │ ├── OfficeRegistry.vb │ │ │ └── RibbonUI.xml │ │ └── Examples │ │ ├── MiscExamples.sln │ │ └── MiscExamples │ │ ├── Examples │ │ ├── Example01.vb │ │ ├── Example02.vb │ │ ├── Example03.Designer.vb │ │ ├── Example03.resx │ │ └── Example03.vb │ │ ├── FormMain.Designer.vb │ │ ├── FormMain.resx │ │ ├── FormMain.vb │ │ ├── MiscExamples VB.vbproj │ │ ├── My Project │ │ ├── Application.Designer.vb │ │ ├── Application.myapp │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings │ │ └── Overview.txt ├── Other │ ├── Excel Addin - Google Translation │ │ ├── ExcelAddin │ │ │ ├── Images │ │ │ │ ├── NetOffice.Icon.32x32.ico │ │ │ │ ├── accept.png │ │ │ │ ├── arrow_refresh.png │ │ │ │ └── exclamation.png │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ └── Resources.resx │ │ │ ├── Sample.ExcelAddin.csproj │ │ │ ├── ThisAddin.cs │ │ │ ├── TranslationClient.cs │ │ │ ├── TranslationPane.Designer.cs │ │ │ ├── TranslationPane.cs │ │ │ └── TranslationPane.resx │ │ ├── Google Translation.sln │ │ ├── Instructions.txt │ │ ├── Local Shared Concept.png │ │ ├── Screenshot.PNG │ │ ├── Server │ │ │ ├── EventRepeator.cs │ │ │ ├── Languages.txt │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ │ ├── Sample.Server.csproj │ │ │ ├── TranslateOperationResult.cs │ │ │ ├── TranslationCache.cs │ │ │ └── WebTranslationService.cs │ │ ├── ServerHost │ │ │ ├── FormMain.Designer.cs │ │ │ ├── FormMain.cs │ │ │ ├── FormMain.resx │ │ │ ├── Images │ │ │ │ ├── error.png │ │ │ │ ├── ok.png │ │ │ │ ├── start.png │ │ │ │ └── warning.png │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ │ ├── Sample.ServerHost.csproj │ │ │ └── color_wheel.ico │ │ └── Thumbs.db │ ├── Outlook Addin - Use Twitter │ │ ├── Outlook Addin - Use Twitter.sln │ │ ├── Outlook Addin - Use Twitter │ │ │ ├── Images │ │ │ │ ├── NetOffice.Icon.32x32.ico │ │ │ │ ├── Outlook.ico │ │ │ │ ├── Settings.PNG │ │ │ │ ├── color_swatch.png │ │ │ │ ├── control_play_blue.png │ │ │ │ ├── exclamation.png │ │ │ │ ├── information.png │ │ │ │ ├── lock_break.png │ │ │ │ ├── lock_go.png │ │ │ │ ├── plugin.png │ │ │ │ ├── setting_tools.png │ │ │ │ ├── twitter_1.png │ │ │ │ ├── twitter_1_big.png │ │ │ │ ├── twitter_2.png │ │ │ │ └── twitter_2_big.png │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ │ ├── Sample.Addin.csproj │ │ │ ├── ThisAddin.cs │ │ │ ├── Twitter │ │ │ │ ├── TwitterTimer.cs │ │ │ │ └── WebImageCollection.cs │ │ │ ├── TwitterPane.Designer.cs │ │ │ ├── TwitterPane.cs │ │ │ ├── TwitterPane.resx │ │ │ ├── UserControls │ │ │ │ ├── ErrorPane.Designer.cs │ │ │ │ ├── ErrorPane.cs │ │ │ │ ├── ErrorPane.resx │ │ │ │ ├── PongPanel.cs │ │ │ │ ├── SettingsPane.Designer.cs │ │ │ │ ├── SettingsPane.cs │ │ │ │ ├── SettingsPane.resx │ │ │ │ ├── TweetGrid.Designer.cs │ │ │ │ ├── TweetGrid.cs │ │ │ │ ├── TweetGrid.resx │ │ │ │ ├── TweetPane.Designer.cs │ │ │ │ ├── TweetPane.cs │ │ │ │ └── TweetPane.resx │ │ │ └── app.config │ │ ├── Screenshot.PNG │ │ └── Thumbs.db │ └── Word Addin - Search Wikipedia │ │ ├── Lib │ │ └── LinqToWikipedia.License.txt │ │ ├── Screenshot.JPG │ │ ├── Search Wikipedia.sln │ │ ├── Search Wikipedia │ │ ├── Images │ │ │ ├── information.png │ │ │ └── search_plus.png │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ └── Resources.resx │ │ ├── Sample.Addin.csproj │ │ ├── ThisAddin.cs │ │ ├── WikipediaPane.Designer.cs │ │ ├── WikipediaPane.cs │ │ └── WikipediaPane.resx │ │ └── Thumbs.db ├── Outlook │ ├── C# │ │ ├── IExtensibility COMAddin Examples │ │ │ ├── ClassicUI │ │ │ │ ├── Addin.cs │ │ │ │ ├── IDTExtensibility2 - ClassicUI.csproj │ │ │ │ └── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── IExtensibility Outlook Addin Examples.sln │ │ │ ├── RibbonUI │ │ │ │ ├── Addin.cs │ │ │ │ ├── IDTExtensibility2 - RibbonUI.csproj │ │ │ │ ├── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ └── RibbonUI.xml │ │ │ └── TaskPane │ │ │ │ ├── Addin.cs │ │ │ │ ├── IDTExtensibility2 - Taskpane.csproj │ │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ └── Resources.resx │ │ │ │ ├── SampleControl.Designer.cs │ │ │ │ ├── SampleControl.cs │ │ │ │ ├── SampleControl.resx │ │ │ │ └── SampleData │ │ │ │ ├── Customer.cs │ │ │ │ └── CustomerData.xml │ │ ├── NetOffice COMAddin Examples │ │ │ ├── Extended │ │ │ │ ├── Addin.cs │ │ │ │ ├── Images │ │ │ │ │ ├── about.png │ │ │ │ │ ├── alarmclock_run.png │ │ │ │ │ ├── alarmclock_stop.png │ │ │ │ │ └── delete2.png │ │ │ │ ├── NetOffice Tools - Extended.csproj │ │ │ │ ├── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── RibbonUI.xml │ │ │ │ ├── SamplePane.Designer.cs │ │ │ │ ├── SamplePane.cs │ │ │ │ └── SamplePane.resx │ │ │ ├── NetOffice Outlook Addin Examples.sln │ │ │ ├── Simple │ │ │ │ ├── Addin.cs │ │ │ │ ├── NetOffice Tools - Simple.csproj │ │ │ │ └── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ └── Tweaks │ │ │ │ ├── Addin.cs │ │ │ │ ├── NetOffice Tools - Tweaks.csproj │ │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ ├── Standard Examples │ │ │ ├── OutlookExamples.sln │ │ │ └── OutookExamples │ │ │ │ ├── Examples │ │ │ │ ├── Example01.Designer.cs │ │ │ │ ├── Example01.cs │ │ │ │ ├── Example01.resx │ │ │ │ ├── Example02.cs │ │ │ │ ├── Example03.Designer.cs │ │ │ │ ├── Example03.cs │ │ │ │ ├── Example03.resx │ │ │ │ ├── Example04.cs │ │ │ │ ├── Example05.Designer.cs │ │ │ │ ├── Example05.cs │ │ │ │ ├── Example05.resx │ │ │ │ ├── Example06.Designer.cs │ │ │ │ ├── Example06.cs │ │ │ │ ├── Example06.resx │ │ │ │ ├── Example07.Designer.cs │ │ │ │ ├── Example07.cs │ │ │ │ └── Example07.resx │ │ │ │ ├── FormMain.Designer.cs │ │ │ │ ├── FormMain.cs │ │ │ │ ├── OutlookExamples CSharp.csproj │ │ │ │ ├── Overview.txt │ │ │ │ ├── Program.cs │ │ │ │ └── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ └── What means the 3 folders.txt │ └── VB │ │ ├── IExtensibility COMAddin Examples │ │ ├── ClassicUI │ │ │ ├── Addin.vb │ │ │ ├── IDTExtensibility2 - ClassicUI.vbproj │ │ │ └── My Project │ │ │ │ ├── Application.Designer.vb │ │ │ │ ├── Application.myapp │ │ │ │ ├── AssemblyInfo.vb │ │ │ │ ├── Resources.Designer.vb │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.vb │ │ │ │ └── Settings.settings │ │ ├── IExtensibility Outlook Addin Examples.sln │ │ ├── RibbonUI │ │ │ ├── Addin.vb │ │ │ ├── IDTExtensibility2 - RibbonUI.vbproj │ │ │ ├── My Project │ │ │ │ ├── Application.Designer.vb │ │ │ │ ├── Application.myapp │ │ │ │ ├── AssemblyInfo.vb │ │ │ │ ├── Resources.Designer.vb │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.vb │ │ │ │ └── Settings.settings │ │ │ └── RibbonUI.xml │ │ └── TaskPane │ │ │ ├── Addin.vb │ │ │ ├── IDTExtensibility2 - Taskpane.vbproj │ │ │ ├── My Project │ │ │ ├── Application.Designer.vb │ │ │ ├── Application.myapp │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ │ ├── SampleControl.Designer.vb │ │ │ ├── SampleControl.resx │ │ │ ├── SampleControl.vb │ │ │ └── SampleData │ │ │ ├── Customer.vb │ │ │ └── CustomerData.xml │ │ ├── NetOffice COMAddin Examples │ │ ├── Extended │ │ │ ├── Addin.vb │ │ │ ├── Images │ │ │ │ ├── about.png │ │ │ │ ├── alarmclock_run.png │ │ │ │ ├── alarmclock_stop.png │ │ │ │ └── delete2.png │ │ │ ├── My Project │ │ │ │ ├── Application.Designer.vb │ │ │ │ ├── Application.myapp │ │ │ │ ├── AssemblyInfo.vb │ │ │ │ ├── Resources.Designer.vb │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.vb │ │ │ │ └── Settings.settings │ │ │ ├── NetOffice Tools - Extended.vbproj │ │ │ ├── RibbonUI.xml │ │ │ ├── SamplePane.Designer.vb │ │ │ ├── SamplePane.resx │ │ │ └── SamplePane.vb │ │ ├── NetOffice Outlook Addin Examples.sln │ │ ├── Simple │ │ │ ├── Addin.vb │ │ │ ├── My Project │ │ │ │ ├── Application.Designer.vb │ │ │ │ ├── Application.myapp │ │ │ │ ├── AssemblyInfo.vb │ │ │ │ ├── Resources.Designer.vb │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.vb │ │ │ │ └── Settings.settings │ │ │ └── NetOffice Tools - Simple.vbproj │ │ └── Tweaks │ │ │ ├── Addin.vb │ │ │ ├── My Project │ │ │ ├── Application.Designer.vb │ │ │ ├── Application.myapp │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ │ └── NetOffice Tools - Tweaks.vbproj │ │ ├── Standard Examples │ │ ├── OutlookExamples.sln │ │ └── OutlookExamples │ │ │ ├── Examples │ │ │ ├── Example01.Designer.vb │ │ │ ├── Example01.resx │ │ │ ├── Example01.vb │ │ │ ├── Example02.vb │ │ │ ├── Example03.Designer.vb │ │ │ ├── Example03.resx │ │ │ ├── Example03.vb │ │ │ ├── Example04.vb │ │ │ ├── Example05.Designer.vb │ │ │ ├── Example05.resx │ │ │ ├── Example05.vb │ │ │ ├── Example06.Designer.vb │ │ │ ├── Example06.resx │ │ │ ├── Example06.vb │ │ │ ├── Example07.Designer.vb │ │ │ ├── Example07.resx │ │ │ └── Example07.vb │ │ │ ├── FormMain.Designer.vb │ │ │ ├── FormMain.resx │ │ │ ├── FormMain.vb │ │ │ ├── My Project │ │ │ ├── Application.Designer.vb │ │ │ ├── Application.myapp │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ │ ├── OutlookExamples VB.vbproj │ │ │ └── Overview.txt │ │ └── What means the 3 folders.txt ├── PowerPoint │ ├── C# │ │ ├── IExtensibility COMAddin Examples │ │ │ ├── ClassicUI │ │ │ │ ├── Addin.cs │ │ │ │ ├── IDTExtensibility2 - ClassicUI.csproj │ │ │ │ └── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── IExtensibility PPoint Addin Examples.sln │ │ │ ├── RibbonUI │ │ │ │ ├── Addin.cs │ │ │ │ ├── IDTExtensibility2 - RibbonUI.csproj │ │ │ │ ├── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ └── RibbonUI.xml │ │ │ └── TaskPane │ │ │ │ ├── Addin.cs │ │ │ │ ├── IDTExtensibility2 - Taskpane.csproj │ │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── SampleControl.Designer.cs │ │ │ │ ├── SampleControl.cs │ │ │ │ ├── SampleControl.resx │ │ │ │ └── SampleData │ │ │ │ ├── Customer.cs │ │ │ │ └── CustomerData.xml │ │ ├── NetOffice COMAddin Examples │ │ │ ├── Extended │ │ │ │ ├── Addin.cs │ │ │ │ ├── Images │ │ │ │ │ ├── about.png │ │ │ │ │ ├── alarmclock_run.png │ │ │ │ │ ├── alarmclock_stop.png │ │ │ │ │ └── delete2.png │ │ │ │ ├── NetOffice Tools - Extended.csproj │ │ │ │ ├── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── RibbonUI.xml │ │ │ │ ├── SamplePane.Designer.cs │ │ │ │ ├── SamplePane.cs │ │ │ │ └── SamplePane.resx │ │ │ ├── NetOffice PPoint Addin Examples.sln │ │ │ ├── Simple │ │ │ │ ├── Addin.cs │ │ │ │ ├── NetOffice Tools - Simple.csproj │ │ │ │ └── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ └── Tweaks │ │ │ │ ├── Addin.cs │ │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ │ └── Tweaks.csproj │ │ ├── Standard Examples │ │ │ ├── PowerPointExamples.sln │ │ │ └── PowerPointExamples │ │ │ │ ├── Examples │ │ │ │ ├── Example01.cs │ │ │ │ ├── Example02.cs │ │ │ │ ├── Example03.cs │ │ │ │ ├── Example04.cs │ │ │ │ ├── Example05.cs │ │ │ │ ├── Example06.Designer.cs │ │ │ │ ├── Example06.cs │ │ │ │ ├── Example06.resx │ │ │ │ ├── Example07.Designer.cs │ │ │ │ ├── Example07.cs │ │ │ │ └── Example07.resx │ │ │ │ ├── FormMain.Designer.cs │ │ │ │ ├── FormMain.cs │ │ │ │ ├── Overview.txt │ │ │ │ ├── PowerPointExamples CSharp.csproj │ │ │ │ ├── Program.cs │ │ │ │ └── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ └── What means the 3 folders.txt │ └── VB │ │ ├── IExtensibility COMAddin Examples │ │ ├── ClassicUI │ │ │ ├── Addin.vb │ │ │ ├── IDTExtensibility2 - ClassicUI.vbproj │ │ │ └── My Project │ │ │ │ ├── Application.Designer.vb │ │ │ │ ├── Application.myapp │ │ │ │ ├── AssemblyInfo.vb │ │ │ │ ├── Resources.Designer.vb │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.vb │ │ │ │ └── Settings.settings │ │ ├── IExtensibility PPoint Addin Examples.sln │ │ ├── RibbonUI │ │ │ ├── Addin.vb │ │ │ ├── IDTExtensibility2 - RibbonUI.vbproj │ │ │ ├── My Project │ │ │ │ ├── Application.Designer.vb │ │ │ │ ├── Application.myapp │ │ │ │ ├── AssemblyInfo.vb │ │ │ │ ├── Resources.Designer.vb │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.vb │ │ │ │ └── Settings.settings │ │ │ └── RibbonUI.xml │ │ └── TaskPane │ │ │ ├── Addin.vb │ │ │ ├── IDTExtensibility2 - Taskpane.vbproj │ │ │ ├── My Project │ │ │ ├── Application.Designer.vb │ │ │ ├── Application.myapp │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ │ ├── SampleControl.Designer.vb │ │ │ ├── SampleControl.resx │ │ │ ├── SampleControl.vb │ │ │ └── SampleData │ │ │ ├── Customer.vb │ │ │ └── CustomerData.xml │ │ ├── NetOffice COMAddin Examples │ │ ├── Extended │ │ │ ├── Addin.vb │ │ │ ├── Images │ │ │ │ ├── about.png │ │ │ │ ├── alarmclock_run.png │ │ │ │ ├── alarmclock_stop.png │ │ │ │ └── delete2.png │ │ │ ├── My Project │ │ │ │ ├── Application.Designer.vb │ │ │ │ ├── Application.myapp │ │ │ │ ├── AssemblyInfo.vb │ │ │ │ ├── Resources.Designer.vb │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.vb │ │ │ │ └── Settings.settings │ │ │ ├── NetOffice Tools - Extended.vbproj │ │ │ ├── RibbonUI.xml │ │ │ ├── SamplePane.Designer.vb │ │ │ ├── SamplePane.resx │ │ │ └── SamplePane.vb │ │ ├── NetOfficePPoint Addin Examples.sln │ │ ├── Simple │ │ │ ├── Addin.vb │ │ │ ├── My Project │ │ │ │ ├── Application.Designer.vb │ │ │ │ ├── Application.myapp │ │ │ │ ├── AssemblyInfo.vb │ │ │ │ ├── Resources.Designer.vb │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.vb │ │ │ │ └── Settings.settings │ │ │ └── NetOffice Tools - Simple.vbproj │ │ └── Tweaks │ │ │ ├── Addin.vb │ │ │ ├── My Project │ │ │ ├── Application.Designer.vb │ │ │ ├── Application.myapp │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ │ └── NetOffice Tools - Tweaks.vbproj │ │ ├── Standard Examples │ │ ├── PowerPointExamples.sln │ │ └── PowerPointExamples │ │ │ ├── Examples │ │ │ ├── Example01.vb │ │ │ ├── Example02.vb │ │ │ ├── Example03.vb │ │ │ ├── Example04.vb │ │ │ ├── Example05.vb │ │ │ ├── Example06.Designer.vb │ │ │ ├── Example06.resx │ │ │ ├── Example06.vb │ │ │ ├── Example07.Designer.vb │ │ │ ├── Example07.resx │ │ │ └── Example07.vb │ │ │ ├── FormMain.Designer.vb │ │ │ ├── FormMain.resx │ │ │ ├── FormMain.vb │ │ │ ├── My Project │ │ │ ├── Application.Designer.vb │ │ │ ├── Application.myapp │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ │ ├── Overview.txt │ │ │ └── PowerPointExamples VB.vbproj │ │ └── What means the 3 folders.txt └── Word │ ├── C# │ ├── IExtensibility COMAddin Examples │ │ ├── ClassicUI │ │ │ ├── Addin.cs │ │ │ ├── IDTExtensibility2 - ClassicUI.csproj │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ ├── IExtensibility Word Addin Examples.sln │ │ ├── RibbonUI │ │ │ ├── Addin.cs │ │ │ ├── IDTExtensibility2 - RibbonUI.csproj │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ └── RibbonUI.xml │ │ └── TaskPane │ │ │ ├── Addin.cs │ │ │ ├── IDTExtensibility2 - Taskpane.csproj │ │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ │ ├── SampleControl.Designer.cs │ │ │ ├── SampleControl.cs │ │ │ ├── SampleControl.resx │ │ │ └── SampleData │ │ │ ├── Customer.cs │ │ │ └── CustomerData.xml │ ├── NetOffice COMAddin Examples │ │ ├── Extended │ │ │ ├── Addin.cs │ │ │ ├── Images │ │ │ │ ├── about.png │ │ │ │ ├── alarmclock_run.png │ │ │ │ ├── alarmclock_stop.png │ │ │ │ └── delete2.png │ │ │ ├── NetOffice Tools - Extended.csproj │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── RibbonUI.xml │ │ │ ├── SamplePane.Designer.cs │ │ │ ├── SamplePane.cs │ │ │ └── SamplePane.resx │ │ ├── NetOffice Word Addin Examples.sln │ │ ├── Simple │ │ │ ├── Addin.cs │ │ │ ├── NetOffice Tools - Simple.csproj │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ └── Tweaks │ │ │ ├── Addin.cs │ │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ │ └── Tweaks.csproj │ ├── Standard Examples │ │ ├── WordExamples.sln │ │ └── WordExamples │ │ │ ├── Examples │ │ │ ├── Example01.cs │ │ │ ├── Example02.cs │ │ │ ├── Example03.cs │ │ │ ├── Example04.cs │ │ │ ├── Example05.cs │ │ │ ├── Example06.Designer.cs │ │ │ ├── Example06.cs │ │ │ ├── Example06.resx │ │ │ ├── Example07.Designer.cs │ │ │ ├── Example07.cs │ │ │ └── Example07.resx │ │ │ ├── FormMain.Designer.cs │ │ │ ├── FormMain.cs │ │ │ ├── Overview.txt │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ │ └── WordExamples CSharp.csproj │ └── What means the 3 folders.txt │ └── VB │ ├── IExtensibility COMAddin Examples │ ├── COMAddinClassicExample │ │ ├── Addin.vb │ │ ├── IDTExtensibility2 - ClassicUI.vbproj │ │ └── My Project │ │ │ ├── Application.Designer.vb │ │ │ ├── Application.myapp │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ ├── COMAddinRibbonExample │ │ ├── Addin.vb │ │ ├── IDTExtensibility2 - RibbonUI.vbproj │ │ ├── My Project │ │ │ ├── Application.Designer.vb │ │ │ ├── Application.myapp │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ └── RibbonUI.xml │ ├── COMAddinTaskPaneExample │ │ ├── Addin.vb │ │ ├── IDTExtensibility2 - Taskpane.vbproj │ │ ├── My Project │ │ │ ├── Application.Designer.vb │ │ │ ├── Application.myapp │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ ├── SampleControl.Designer.vb │ │ ├── SampleControl.resx │ │ ├── SampleControl.vb │ │ └── SampleData │ │ │ ├── Customer.vb │ │ │ └── CustomerData.xml │ └── Word Addin Examples.sln │ ├── NetOffice COMAddin Examples │ ├── Extended │ │ ├── Addin.vb │ │ ├── Images │ │ │ ├── about.png │ │ │ ├── alarmclock_run.png │ │ │ ├── alarmclock_stop.png │ │ │ └── delete2.png │ │ ├── My Project │ │ │ ├── Application.Designer.vb │ │ │ ├── Application.myapp │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ ├── NetOffice Tools - Extended.vbproj │ │ ├── RibbonUI.xml │ │ ├── SamplePane.Designer.vb │ │ ├── SamplePane.resx │ │ └── SamplePane.vb │ ├── Simple │ │ ├── Addin.vb │ │ ├── My Project │ │ │ ├── Application.Designer.vb │ │ │ ├── Application.myapp │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ └── NetOffice Tools - Simple.vbproj │ ├── Tweaks │ │ ├── Addin.vb │ │ ├── My Project │ │ │ ├── Application.Designer.vb │ │ │ ├── Application.myapp │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ └── Tweaks.vbproj │ └── Word Addin Examples.sln │ ├── Standard Examples │ ├── WordExamples.sln │ └── WordExamples │ │ ├── Examples │ │ ├── Example01.vb │ │ ├── Example02.vb │ │ ├── Example03.vb │ │ ├── Example04.vb │ │ ├── Example05.vb │ │ ├── Example06.Designer.vb │ │ ├── Example06.resx │ │ ├── Example06.vb │ │ ├── Example07.Designer.vb │ │ ├── Example07.resx │ │ └── Example07.vb │ │ ├── FormMain.Designer.vb │ │ ├── FormMain.resx │ │ ├── FormMain.vb │ │ ├── My Project │ │ ├── Application.Designer.vb │ │ ├── Application.myapp │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings │ │ ├── Overview.txt │ │ └── WordExamples VB.vbproj │ └── What means the 3 folders.txt ├── LICENSE.txt ├── README.md ├── Source ├── ADODB │ ├── ADODBApi.csproj │ ├── AssemblyInfo.cs │ ├── Classes │ │ ├── Command.cs │ │ ├── Connection.cs │ │ ├── Parameter.cs │ │ ├── Record.cs │ │ ├── Recordset.cs │ │ └── Stream.cs │ ├── DispatchInterfaces │ │ ├── Command15.cs │ │ ├── Command15_Deprecated.cs │ │ ├── Connection15.cs │ │ ├── Connection15_Deprecated.cs │ │ ├── ConnectionEvents_Deprecated.cs │ │ ├── Error.cs │ │ ├── Errors.cs │ │ ├── Field.cs │ │ ├── Field15.cs │ │ ├── Field15_Deprecated.cs │ │ ├── Field20.cs │ │ ├── Field20_Deprecated.cs │ │ ├── Field_Deprecated.cs │ │ ├── Fields.cs │ │ ├── Fields15.cs │ │ ├── Fields15_Deprecated.cs │ │ ├── Fields20.cs │ │ ├── Fields20_Deprecated.cs │ │ ├── Fields_Deprecated.cs │ │ ├── IRecFields.cs │ │ ├── Parameters.cs │ │ ├── Parameters_Deprecated.cs │ │ ├── Properties.cs │ │ ├── Property.cs │ │ ├── Recordset15.cs │ │ ├── Recordset15_Deprecated.cs │ │ ├── Recordset20.cs │ │ ├── Recordset20_Deprecated.cs │ │ ├── Recordset21.cs │ │ ├── Recordset21_Deprecated.cs │ │ ├── RecordsetEvents_Deprecated.cs │ │ ├── _ADO.cs │ │ ├── _Collection.cs │ │ ├── _Command.cs │ │ ├── _Command_Deprecated.cs │ │ ├── _Connection.cs │ │ ├── _Connection_Deprecated.cs │ │ ├── _DynaCollection.cs │ │ ├── _Parameter.cs │ │ ├── _Parameter_Deprecated.cs │ │ ├── _Record.cs │ │ ├── _Record_Deprecated.cs │ │ ├── _Recordset.cs │ │ ├── _Recordset_Deprecated.cs │ │ ├── _Stream.cs │ │ └── _Stream_Deprecated.cs │ ├── Enums │ │ ├── ADCPROP_ASYNCTHREADPRIORITY_ENUM.cs │ │ ├── ADCPROP_AUTORECALC_ENUM.cs │ │ ├── ADCPROP_UPDATECRITERIA_ENUM.cs │ │ ├── ADCPROP_UPDATERESYNC_ENUM.cs │ │ ├── AffectEnum.cs │ │ ├── BookmarkEnum.cs │ │ ├── CEResyncEnum.cs │ │ ├── CommandTypeEnum.cs │ │ ├── CompareEnum.cs │ │ ├── ConnectModeEnum.cs │ │ ├── ConnectOptionEnum.cs │ │ ├── ConnectPromptEnum.cs │ │ ├── CopyRecordOptionsEnum.cs │ │ ├── CursorLocationEnum.cs │ │ ├── CursorOptionEnum.cs │ │ ├── CursorTypeEnum.cs │ │ ├── DataTypeEnum.cs │ │ ├── EditModeEnum.cs │ │ ├── ErrorValueEnum.cs │ │ ├── EventReasonEnum.cs │ │ ├── EventStatusEnum.cs │ │ ├── ExecuteOptionEnum.cs │ │ ├── FieldAttributeEnum.cs │ │ ├── FieldEnum.cs │ │ ├── FieldStatusEnum.cs │ │ ├── FilterGroupEnum.cs │ │ ├── GetRowsOptionEnum.cs │ │ ├── IsolationLevelEnum.cs │ │ ├── LineSeparatorEnum.cs │ │ ├── LockTypeEnum.cs │ │ ├── MarshalOptionsEnum.cs │ │ ├── MoveRecordOptionsEnum.cs │ │ ├── ObjectStateEnum.cs │ │ ├── ParameterAttributesEnum.cs │ │ ├── ParameterDirectionEnum.cs │ │ ├── PersistFormatEnum.cs │ │ ├── PositionEnum.cs │ │ ├── PropertyAttributesEnum.cs │ │ ├── RecordCreateOptionsEnum.cs │ │ ├── RecordOpenOptionsEnum.cs │ │ ├── RecordStatusEnum.cs │ │ ├── RecordTypeEnum.cs │ │ ├── ResyncEnum.cs │ │ ├── SaveOptionsEnum.cs │ │ ├── SchemaEnum.cs │ │ ├── SearchDirectionEnum.cs │ │ ├── SeekEnum.cs │ │ ├── StreamOpenOptionsEnum.cs │ │ ├── StreamReadEnum.cs │ │ ├── StreamTypeEnum.cs │ │ ├── StreamWriteEnum.cs │ │ ├── StringFormatEnum.cs │ │ └── XactAttributeEnum.cs │ ├── EventInterfaces │ │ ├── ConnectionEvents.cs │ │ └── RecordsetEvents.cs │ ├── Interfaces │ │ ├── ADOCommandConstruction.cs │ │ ├── ADOConnectionConstruction.cs │ │ ├── ADOConnectionConstruction15.cs │ │ ├── ADORecordConstruction.cs │ │ ├── ADORecordsetConstruction.cs │ │ ├── ADORecordsetConstruction_Deprecated.cs │ │ ├── ADOStreamConstruction.cs │ │ ├── ConnectionEventsVt.cs │ │ ├── ConnectionEventsVt_Deprecated.cs │ │ ├── RecordsetEventsVt.cs │ │ └── RecordsetEventsVt_Deprecated.cs │ └── Utils │ │ └── ProjectInfo.cs ├── Access │ ├── AccessApi.csproj │ ├── AssemblyInfo.cs │ ├── Classes │ │ ├── AccessField.cs │ │ ├── AdditionalData.cs │ │ ├── AllDataAccessPages.cs │ │ ├── AllDatabaseDiagrams.cs │ │ ├── AllForms.cs │ │ ├── AllFunctions.cs │ │ ├── AllMacros.cs │ │ ├── AllModules.cs │ │ ├── AllQueries.cs │ │ ├── AllReports.cs │ │ ├── AllStoredProcedures.cs │ │ ├── AllTables.cs │ │ ├── AllViews.cs │ │ ├── Application.cs │ │ ├── Attachment.cs │ │ ├── AutoCorrect.cs │ │ ├── BoundObjectFrame.cs │ │ ├── CheckBox.cs │ │ ├── Class.cs │ │ ├── CodeData.cs │ │ ├── CodeProject.cs │ │ ├── ComboBox.cs │ │ ├── CommandButton.cs │ │ ├── Control.cs │ │ ├── CurrentData.cs │ │ ├── CurrentProject.cs │ │ ├── CustomControl.cs │ │ ├── DataAccessPage.cs │ │ ├── DefaultWebOptions.cs │ │ ├── DependencyInfo.cs │ │ ├── DependencyObjects.cs │ │ ├── EmptyCell.cs │ │ ├── Form.cs │ │ ├── FormOld.cs │ │ ├── FormOldV10.cs │ │ ├── FormatCondition.cs │ │ ├── GroupLevel.cs │ │ ├── Hyperlink.cs │ │ ├── Image.cs │ │ ├── Label.cs │ │ ├── Line.cs │ │ ├── ListBox.cs │ │ ├── LocalVar.cs │ │ ├── LocalVars.cs │ │ ├── MacroError.cs │ │ ├── NavigationButton.cs │ │ ├── NavigationControl.cs │ │ ├── ObjectFrame.cs │ │ ├── OptionButton.cs │ │ ├── OptionGroup.cs │ │ ├── Page.cs │ │ ├── PageBreak.cs │ │ ├── PaletteButton.cs │ │ ├── Printer.cs │ │ ├── Rectangle.cs │ │ ├── References.cs │ │ ├── Report.cs │ │ ├── ReportOld.cs │ │ ├── ReportOldV10.cs │ │ ├── ReturnVar.cs │ │ ├── ReturnVars.cs │ │ ├── Section.cs │ │ ├── SmartTag.cs │ │ ├── SmartTagAction.cs │ │ ├── SmartTagActions.cs │ │ ├── SmartTagProperties.cs │ │ ├── SmartTagProperty.cs │ │ ├── SmartTags.cs │ │ ├── SubForm.cs │ │ ├── SubReport.cs │ │ ├── TabControl.cs │ │ ├── TempVar.cs │ │ ├── TempVars.cs │ │ ├── TextBox.cs │ │ ├── ToggleButton.cs │ │ ├── WebBrowserControl.cs │ │ ├── WebOptions.cs │ │ ├── WizHook.cs │ │ ├── _CheckBoxInOption.cs │ │ ├── _ChildLabel.cs │ │ ├── _ControlInReportEvents.cs │ │ ├── _CustomControlInReport.cs │ │ ├── _OptionButtonInOption.cs │ │ ├── _PageHdrFtrInReport.cs │ │ ├── _SectionInReport.cs │ │ └── _ToggleButtonInOption.cs │ ├── Constants │ │ ├── Constants.cs │ │ └── OldConstants.cs │ ├── DispatchInterfaces │ │ ├── AccessObject.cs │ │ ├── AccessObjectProperties.cs │ │ ├── AccessObjectProperty.cs │ │ ├── AllObjects.cs │ │ ├── Children.cs │ │ ├── Controls.cs │ │ ├── DataAccessPages.cs │ │ ├── DoCmd.cs │ │ ├── Entities.cs │ │ ├── Entity.cs │ │ ├── FormatConditions.cs │ │ ├── Forms.cs │ │ ├── ImportExportSpecification.cs │ │ ├── ImportExportSpecifications.cs │ │ ├── Module.cs │ │ ├── Modules.cs │ │ ├── Operation.cs │ │ ├── Operations.cs │ │ ├── Pages.cs │ │ ├── Printers.cs │ │ ├── Properties.cs │ │ ├── Reference.cs │ │ ├── Reports.cs │ │ ├── Screen.cs │ │ ├── SharedResource.cs │ │ ├── SharedResources.cs │ │ ├── WSParameter.cs │ │ ├── WSParameters.cs │ │ ├── WebService.cs │ │ ├── WebServices.cs │ │ ├── _AccessField.cs │ │ ├── _AccessProperty.cs │ │ ├── _AddTileUIReceiver.cs │ │ ├── _AdditionalData.cs │ │ ├── _Application.cs │ │ ├── _Attachment.cs │ │ ├── _AutoCorrect.cs │ │ ├── _BoundObjectFrame.cs │ │ ├── _Checkbox.cs │ │ ├── _Combobox.cs │ │ ├── _CommandButton.cs │ │ ├── _Control.cs │ │ ├── _CurrentData.cs │ │ ├── _CurrentProject.cs │ │ ├── _CustomControl.cs │ │ ├── _DataAccessPage.cs │ │ ├── _DefaultWebOptions.cs │ │ ├── _DependencyInfo.cs │ │ ├── _DependencyObjects.cs │ │ ├── _DesignerReceiver.cs │ │ ├── _Dummy.cs │ │ ├── _EmptyCell.cs │ │ ├── _Form.cs │ │ ├── _Form2.cs │ │ ├── _Form3.cs │ │ ├── _FormatCondition.cs │ │ ├── _GroupLevel.cs │ │ ├── _Hyperlink.cs │ │ ├── _Image.cs │ │ ├── _ItemsSelected.cs │ │ ├── _Label.cs │ │ ├── _Line.cs │ │ ├── _ListBox.cs │ │ ├── _LocalVar.cs │ │ ├── _LocalVars.cs │ │ ├── _MacroError.cs │ │ ├── _NavigationButton.cs │ │ ├── _NavigationControl.cs │ │ ├── _ObjectFrame.cs │ │ ├── _OptionButton.cs │ │ ├── _OptionGroup.cs │ │ ├── _Page.cs │ │ ├── _PageBreak.cs │ │ ├── _PaletteButton.cs │ │ ├── _Printer.cs │ │ ├── _RecordsetEvents.cs │ │ ├── _Rectangle.cs │ │ ├── _References.cs │ │ ├── _Report.cs │ │ ├── _Report2.cs │ │ ├── _Report3.cs │ │ ├── _ReturnVar.cs │ │ ├── _ReturnVars.cs │ │ ├── _Section.cs │ │ ├── _SmartTag.cs │ │ ├── _SmartTagAction.cs │ │ ├── _SmartTagActions.cs │ │ ├── _SmartTagProperties.cs │ │ ├── _SmartTagProperty.cs │ │ ├── _SmartTags.cs │ │ ├── _SqmProxyReceiver.cs │ │ ├── _SubForm.cs │ │ ├── _SubReport.cs │ │ ├── _TabControl.cs │ │ ├── _TempVar.cs │ │ ├── _TempVars.cs │ │ ├── _Textbox.cs │ │ ├── _ToggleButton.cs │ │ ├── _WebBrowserControl.cs │ │ ├── _WebOptions.cs │ │ └── _WizHook.cs │ ├── Enums │ │ ├── AcBrowseToObjectType.cs │ │ ├── AcCloseSave.cs │ │ ├── AcColorIndex.cs │ │ ├── AcCommand.cs │ │ ├── AcControlType.cs │ │ ├── AcCurrentView.cs │ │ ├── AcCursorOnHover.cs │ │ ├── AcDataAccessPageView.cs │ │ ├── AcDataObjectType.cs │ │ ├── AcDataTransferType.cs │ │ ├── AcDefReportView.cs │ │ ├── AcDefView.cs │ │ ├── AcDisplayAs.cs │ │ ├── AcDisplayAsHyperlink.cs │ │ ├── AcExportQuality.cs │ │ ├── AcExportXMLEncoding.cs │ │ ├── AcExportXMLObjectType.cs │ │ ├── AcExportXMLOtherFlags.cs │ │ ├── AcExportXMLSchemaFormat.cs │ │ ├── AcFileFormat.cs │ │ ├── AcFilterType.cs │ │ ├── AcFindField.cs │ │ ├── AcFindMatch.cs │ │ ├── AcFormOpenDataMode.cs │ │ ├── AcFormView.cs │ │ ├── AcFormatBarLimits.cs │ │ ├── AcFormatConditionOperator.cs │ │ ├── AcFormatConditionType.cs │ │ ├── AcHorizontalAnchor.cs │ │ ├── AcHyperlinkPart.cs │ │ ├── AcImeMode.cs │ │ ├── AcImeSentenceMode.cs │ │ ├── AcImportXMLOption.cs │ │ ├── AcLayoutType.cs │ │ ├── AcModuleType.cs │ │ ├── AcNavigationSpan.cs │ │ ├── AcNewDatabaseFormat.cs │ │ ├── AcObjectType.cs │ │ ├── AcOpenDataMode.cs │ │ ├── AcOutputObjectType.cs │ │ ├── AcPictureCaptionArrangement.cs │ │ ├── AcPrintColor.cs │ │ ├── AcPrintDuplex.cs │ │ ├── AcPrintItemLayout.cs │ │ ├── AcPrintObjQuality.cs │ │ ├── AcPrintOrientation.cs │ │ ├── AcPrintPaperBin.cs │ │ ├── AcPrintPaperSize.cs │ │ ├── AcPrintQuality.cs │ │ ├── AcPrintRange.cs │ │ ├── AcProjectType.cs │ │ ├── AcProperty.cs │ │ ├── AcQuitOption.cs │ │ ├── AcRecord.cs │ │ ├── AcResourceType.cs │ │ ├── AcSearchDirection.cs │ │ ├── AcSection.cs │ │ ├── AcSendObjectType.cs │ │ ├── AcSeparatorCharacters.cs │ │ ├── AcSharePointListTransferType.cs │ │ ├── AcShowToolbar.cs │ │ ├── AcSplitFormDatasheet.cs │ │ ├── AcSplitFormOrientation.cs │ │ ├── AcSplitFormPrinting.cs │ │ ├── AcSpreadSheetType.cs │ │ ├── AcSysCmdAction.cs │ │ ├── AcTextFormat.cs │ │ ├── AcTextTransferType.cs │ │ ├── AcTransformXMLScriptOption.cs │ │ ├── AcVerticalAnchor.cs │ │ ├── AcView.cs │ │ ├── AcWebBrowserScrollBars.cs │ │ ├── AcWebBrowserState.cs │ │ ├── AcWebUserDisplay.cs │ │ ├── AcWebUserGroupsDisplay.cs │ │ ├── AcWindowMode.cs │ │ ├── ProcKind.cs │ │ └── RefKind.cs │ ├── EventInterfaces │ │ ├── DispAttachmentEvents.cs │ │ ├── DispBoundObjectFrameEvents.cs │ │ ├── DispCheckBoxEvents.cs │ │ ├── DispChildLabelEvents.cs │ │ ├── DispComboBoxEvents.cs │ │ ├── DispCommandButtonEvents.cs │ │ ├── DispCustomControlEvents.cs │ │ ├── DispCustomControlInReportEvents.cs │ │ ├── DispEmptyCellEvents.cs │ │ ├── DispImageEvents.cs │ │ ├── DispLabelEvents.cs │ │ ├── DispLineEvents.cs │ │ ├── DispListBoxEvents.cs │ │ ├── DispNavigationButtonEvents.cs │ │ ├── DispNavigationControlEvents.cs │ │ ├── DispObjectFrameEvents.cs │ │ ├── DispOptionButtonEvents.cs │ │ ├── DispOptionGroupEvents.cs │ │ ├── DispPageBreakEvents.cs │ │ ├── DispPageEvents.cs │ │ ├── DispPageHdrFtrInReportEvents.cs │ │ ├── DispPaletteButtonEvents.cs │ │ ├── DispRectangleEvents.cs │ │ ├── DispSectionEvents.cs │ │ ├── DispSectionInReportEvents.cs │ │ ├── DispSubFormEvents.cs │ │ ├── DispSubReportEvents.cs │ │ ├── DispTabControlEvents.cs │ │ ├── DispTextBoxEvents.cs │ │ ├── DispToggleButtonEvents.cs │ │ ├── DispWebBrowserControlEvents.cs │ │ ├── _BoundObjectFrameEvents.cs │ │ ├── _CheckBoxEvents.cs │ │ ├── _CheckBoxInOptionEvents.cs │ │ ├── _ChildLabelEvents.cs │ │ ├── _ComboBoxEvents.cs │ │ ├── _CommandButtonEvents.cs │ │ ├── _CustomControlEvents.cs │ │ ├── _CustomControlInReportEvents.cs │ │ ├── _DispControlInReportEvents.cs │ │ ├── _DummyEvents.cs │ │ ├── _FormEvents.cs │ │ ├── _FormEvents2.cs │ │ ├── _ImageEvents.cs │ │ ├── _LabelEvents.cs │ │ ├── _LineEvents.cs │ │ ├── _ListBoxEvents.cs │ │ ├── _ObjectFrameEvents.cs │ │ ├── _OptionButtonEvents.cs │ │ ├── _OptionButtonInOptionEvents.cs │ │ ├── _OptionGroupEvents.cs │ │ ├── _PageBreakEvents.cs │ │ ├── _PageEvents.cs │ │ ├── _PageHdrFtrInReportEvents.cs │ │ ├── _PaletteButtonEvents.cs │ │ ├── _RectangleEvents.cs │ │ ├── _References_Events.cs │ │ ├── _ReportEvents.cs │ │ ├── _ReportEvents2.cs │ │ ├── _SectionEvents.cs │ │ ├── _SectionInReportEvents.cs │ │ ├── _SubFormEvents.cs │ │ ├── _SubReportEvents.cs │ │ ├── _TabControlEvents.cs │ │ ├── _TextBoxEvents.cs │ │ ├── _ToggleButtonEvents.cs │ │ ├── _ToggleButtonInOptionEvents.cs │ │ └── __ControlInReportEvents.cs │ ├── Interfaces │ │ └── __Help.cs │ ├── Modules │ │ └── Global.cs │ ├── Tools │ │ ├── COMAddin.cs │ │ ├── ITaskPane.cs │ │ └── Utils │ │ │ ├── CommonUtils.cs │ │ │ ├── DocumentFormat.cs │ │ │ └── FileUtils.cs │ └── Utils │ │ └── ProjectInfo.cs ├── ClientApplication │ ├── ClientApplication.csproj │ ├── Form1.cs │ ├── Form1.resx │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── app.config ├── DAO │ ├── AssemblyInfo.cs │ ├── Classes │ │ ├── DBEngine.cs │ │ ├── Field.cs │ │ ├── Group.cs │ │ ├── Index.cs │ │ ├── PrivDBEngine.cs │ │ ├── QueryDef.cs │ │ ├── Relation.cs │ │ ├── TableDef.cs │ │ └── User.cs │ ├── Constants │ │ └── LanguageConstants.cs │ ├── DAOApi.csproj │ ├── DispatchInterfaces │ │ ├── ComplexType.cs │ │ ├── Connection.cs │ │ ├── Connections.cs │ │ ├── Container.cs │ │ ├── Containers.cs │ │ ├── Database.cs │ │ ├── Databases.cs │ │ ├── Document.cs │ │ ├── Documents.cs │ │ ├── Error.cs │ │ ├── Errors.cs │ │ ├── Field2.cs │ │ ├── Fields.cs │ │ ├── Groups.cs │ │ ├── IndexFields.cs │ │ ├── Indexes.cs │ │ ├── Parameter.cs │ │ ├── Parameters.cs │ │ ├── Properties.cs │ │ ├── Property.cs │ │ ├── QueryDefs.cs │ │ ├── Recordset.cs │ │ ├── Recordset2.cs │ │ ├── Recordsets.cs │ │ ├── Relations.cs │ │ ├── TableDefs.cs │ │ ├── Users.cs │ │ ├── Workspace.cs │ │ ├── Workspaces.cs │ │ ├── _Collection.cs │ │ ├── _DAO.cs │ │ ├── _DBEngine.cs │ │ ├── _DynaCollection.cs │ │ ├── _Field.cs │ │ ├── _Group.cs │ │ ├── _Index.cs │ │ ├── _QueryDef.cs │ │ ├── _Relation.cs │ │ ├── _TableDef.cs │ │ └── _User.cs │ ├── Enums │ │ ├── CollatingOrderEnum.cs │ │ ├── CommitTransOptionsEnum.cs │ │ ├── CursorDriverEnum.cs │ │ ├── DataTypeEnum.cs │ │ ├── DatabaseTypeEnum.cs │ │ ├── DriverPromptEnum.cs │ │ ├── EditModeEnum.cs │ │ ├── FieldAttributeEnum.cs │ │ ├── IdleEnum.cs │ │ ├── LockTypeEnum.cs │ │ ├── ParameterDirectionEnum.cs │ │ ├── PermissionEnum.cs │ │ ├── QueryDefStateEnum.cs │ │ ├── QueryDefTypeEnum.cs │ │ ├── RecordStatusEnum.cs │ │ ├── RecordsetOptionEnum.cs │ │ ├── RecordsetTypeEnum.cs │ │ ├── RelationAttributeEnum.cs │ │ ├── ReplicaTypeEnum.cs │ │ ├── SetOptionEnum.cs │ │ ├── SynchronizeTypeEnum.cs │ │ ├── TableDefAttributeEnum.cs │ │ ├── UpdateCriteriaEnum.cs │ │ ├── UpdateTypeEnum.cs │ │ ├── WorkspaceTypeEnum.cs │ │ └── _DAOSuppHelp.cs │ ├── Modules │ │ └── Global.cs │ └── Utils │ │ └── ProjectInfo.cs ├── Excel │ ├── AssemblyInfo.cs │ ├── Classes │ │ ├── Application.cs │ │ ├── Chart.cs │ │ ├── OLEObject.cs │ │ ├── QueryTable.cs │ │ ├── Workbook.cs │ │ └── Worksheet.cs │ ├── DispatchInterfaces │ │ ├── AboveAverage.cs │ │ ├── Action.cs │ │ ├── Actions.cs │ │ ├── AddIn.cs │ │ ├── AddIns.cs │ │ ├── AddIns2.cs │ │ ├── Adjustments.cs │ │ ├── AllowEditRange.cs │ │ ├── AllowEditRanges.cs │ │ ├── Arc.cs │ │ ├── Arcs.cs │ │ ├── Areas.cs │ │ ├── AutoCorrect.cs │ │ ├── AutoFilter.cs │ │ ├── AutoRecover.cs │ │ ├── Axes.cs │ │ ├── Axis.cs │ │ ├── AxisTitle.cs │ │ ├── Border.cs │ │ ├── Borders.cs │ │ ├── Button.cs │ │ ├── Buttons.cs │ │ ├── CalculatedFields.cs │ │ ├── CalculatedItems.cs │ │ ├── CalculatedMember.cs │ │ ├── CalculatedMembers.cs │ │ ├── CalloutFormat.cs │ │ ├── CategoryCollection.cs │ │ ├── CellFormat.cs │ │ ├── Characters.cs │ │ ├── ChartArea.cs │ │ ├── ChartCategory.cs │ │ ├── ChartColorFormat.cs │ │ ├── ChartFillFormat.cs │ │ ├── ChartFormat.cs │ │ ├── ChartGroup.cs │ │ ├── ChartGroups.cs │ │ ├── ChartObject.cs │ │ ├── ChartObjects.cs │ │ ├── ChartTitle.cs │ │ ├── ChartView.cs │ │ ├── Charts.cs │ │ ├── CheckBox.cs │ │ ├── CheckBoxes.cs │ │ ├── ColorFormat.cs │ │ ├── ColorScale.cs │ │ ├── ColorScaleCriteria.cs │ │ ├── ColorScaleCriterion.cs │ │ ├── ColorStop.cs │ │ ├── ColorStops.cs │ │ ├── Comment.cs │ │ ├── Comments.cs │ │ ├── ConditionValue.cs │ │ ├── Connections.cs │ │ ├── ConnectorFormat.cs │ │ ├── ControlFormat.cs │ │ ├── Corners.cs │ │ ├── CubeField.cs │ │ ├── CubeFields.cs │ │ ├── CustomProperties.cs │ │ ├── CustomProperty.cs │ │ ├── CustomView.cs │ │ ├── CustomViews.cs │ │ ├── DataBarBorder.cs │ │ ├── DataFeedConnection.cs │ │ ├── DataLabel.cs │ │ ├── DataLabels.cs │ │ ├── DataTable.cs │ │ ├── Databar.cs │ │ ├── DefaultWebOptions.cs │ │ ├── Diagram.cs │ │ ├── DiagramNode.cs │ │ ├── DiagramNodeChildren.cs │ │ ├── DiagramNodes.cs │ │ ├── Dialog.cs │ │ ├── DialogFrame.cs │ │ ├── DialogSheet.cs │ │ ├── DialogSheetView.cs │ │ ├── DialogSheets.cs │ │ ├── Dialogs.cs │ │ ├── DisplayFormat.cs │ │ ├── DisplayUnitLabel.cs │ │ ├── DownBars.cs │ │ ├── Drawing.cs │ │ ├── DrawingObjects.cs │ │ ├── Drawings.cs │ │ ├── DropDown.cs │ │ ├── DropDowns.cs │ │ ├── DropLines.cs │ │ ├── EditBox.cs │ │ ├── EditBoxes.cs │ │ ├── Error.cs │ │ ├── ErrorBars.cs │ │ ├── ErrorCheckingOptions.cs │ │ ├── Errors.cs │ │ ├── FileExportConverter.cs │ │ ├── FileExportConverters.cs │ │ ├── FillFormat.cs │ │ ├── Filter.cs │ │ ├── Filters.cs │ │ ├── Floor.cs │ │ ├── Font.cs │ │ ├── FormatColor.cs │ │ ├── FormatCondition.cs │ │ ├── FormatConditions.cs │ │ ├── FreeformBuilder.cs │ │ ├── FullSeriesCollection.cs │ │ ├── Graphic.cs │ │ ├── Gridlines.cs │ │ ├── GroupBox.cs │ │ ├── GroupBoxes.cs │ │ ├── GroupObject.cs │ │ ├── GroupObjects.cs │ │ ├── GroupShapes.cs │ │ ├── HPageBreak.cs │ │ ├── HPageBreaks.cs │ │ ├── HeaderFooter.cs │ │ ├── HiLoLines.cs │ │ ├── Hyperlink.cs │ │ ├── Hyperlinks.cs │ │ ├── IRTDUpdateEvent.cs │ │ ├── IRtdServer.cs │ │ ├── Icon.cs │ │ ├── IconCriteria.cs │ │ ├── IconCriterion.cs │ │ ├── IconSet.cs │ │ ├── IconSetCondition.cs │ │ ├── IconSets.cs │ │ ├── Interior.cs │ │ ├── Label.cs │ │ ├── Labels.cs │ │ ├── LeaderLines.cs │ │ ├── Legend.cs │ │ ├── LegendEntries.cs │ │ ├── LegendEntry.cs │ │ ├── LegendKey.cs │ │ ├── Line.cs │ │ ├── LineFormat.cs │ │ ├── LinearGradient.cs │ │ ├── Lines.cs │ │ ├── LinkFormat.cs │ │ ├── ListBox.cs │ │ ├── ListBoxes.cs │ │ ├── ListColumn.cs │ │ ├── ListColumns.cs │ │ ├── ListDataFormat.cs │ │ ├── ListObject.cs │ │ ├── ListObjects.cs │ │ ├── ListRow.cs │ │ ├── ListRows.cs │ │ ├── Mailer.cs │ │ ├── Menu.cs │ │ ├── MenuBar.cs │ │ ├── MenuBars.cs │ │ ├── MenuItem.cs │ │ ├── MenuItems.cs │ │ ├── Menus.cs │ │ ├── Model.cs │ │ ├── ModelChanges.cs │ │ ├── ModelColumnChange.cs │ │ ├── ModelColumnChanges.cs │ │ ├── ModelColumnName.cs │ │ ├── ModelColumnNames.cs │ │ ├── ModelConnection.cs │ │ ├── ModelMeasureName.cs │ │ ├── ModelMeasureNames.cs │ │ ├── ModelRelationship.cs │ │ ├── ModelRelationships.cs │ │ ├── ModelTable.cs │ │ ├── ModelTableColumn.cs │ │ ├── ModelTableColumns.cs │ │ ├── ModelTableNameChange.cs │ │ ├── ModelTableNameChanges.cs │ │ ├── ModelTableNames.cs │ │ ├── ModelTables.cs │ │ ├── Module.cs │ │ ├── ModuleView.cs │ │ ├── Modules.cs │ │ ├── MultiThreadedCalculation.cs │ │ ├── Name.cs │ │ ├── Names.cs │ │ ├── NegativeBarFormat.cs │ │ ├── ODBCConnection.cs │ │ ├── ODBCError.cs │ │ ├── ODBCErrors.cs │ │ ├── OLEDBConnection.cs │ │ ├── OLEDBError.cs │ │ ├── OLEDBErrors.cs │ │ ├── OLEFormat.cs │ │ ├── OLEObjects.cs │ │ ├── OptionButton.cs │ │ ├── OptionButtons.cs │ │ ├── Outline.cs │ │ ├── Oval.cs │ │ ├── Ovals.cs │ │ ├── Page.cs │ │ ├── PageSetup.cs │ │ ├── Pages.cs │ │ ├── Pane.cs │ │ ├── Panes.cs │ │ ├── Parameter.cs │ │ ├── Parameters.cs │ │ ├── Phonetic.cs │ │ ├── Phonetics.cs │ │ ├── Picture.cs │ │ ├── PictureFormat.cs │ │ ├── Pictures.cs │ │ ├── PivotAxis.cs │ │ ├── PivotCache.cs │ │ ├── PivotCaches.cs │ │ ├── PivotCell.cs │ │ ├── PivotField.cs │ │ ├── PivotFields.cs │ │ ├── PivotFilter.cs │ │ ├── PivotFilters.cs │ │ ├── PivotFormula.cs │ │ ├── PivotFormulas.cs │ │ ├── PivotItem.cs │ │ ├── PivotItemList.cs │ │ ├── PivotItems.cs │ │ ├── PivotLayout.cs │ │ ├── PivotLine.cs │ │ ├── PivotLineCells.cs │ │ ├── PivotLines.cs │ │ ├── PivotTable.cs │ │ ├── PivotTableChangeList.cs │ │ ├── PivotTables.cs │ │ ├── PivotValueCell.cs │ │ ├── PlotArea.cs │ │ ├── Point.cs │ │ ├── Points.cs │ │ ├── ProtectedViewWindow.cs │ │ ├── ProtectedViewWindows.cs │ │ ├── Protection.cs │ │ ├── PublishObject.cs │ │ ├── PublishObjects.cs │ │ ├── QueryTables.cs │ │ ├── QuickAnalysis.cs │ │ ├── RTD.cs │ │ ├── Range.cs │ │ ├── Ranges.cs │ │ ├── RecentFile.cs │ │ ├── RecentFiles.cs │ │ ├── Rectangle.cs │ │ ├── Rectangles.cs │ │ ├── RectangularGradient.cs │ │ ├── Research.cs │ │ ├── RoutingSlip.cs │ │ ├── Scenario.cs │ │ ├── Scenarios.cs │ │ ├── ScrollBar.cs │ │ ├── ScrollBars.cs │ │ ├── Series.cs │ │ ├── SeriesCollection.cs │ │ ├── SeriesLines.cs │ │ ├── ServerViewableItems.cs │ │ ├── ShadowFormat.cs │ │ ├── Shape.cs │ │ ├── ShapeNode.cs │ │ ├── ShapeNodes.cs │ │ ├── ShapeRange.cs │ │ ├── Shapes.cs │ │ ├── SheetViews.cs │ │ ├── Sheets.cs │ │ ├── Slicer.cs │ │ ├── SlicerCache.cs │ │ ├── SlicerCacheLevel.cs │ │ ├── SlicerCacheLevels.cs │ │ ├── SlicerCaches.cs │ │ ├── SlicerItem.cs │ │ ├── SlicerItems.cs │ │ ├── SlicerPivotTables.cs │ │ ├── Slicers.cs │ │ ├── SmartTag.cs │ │ ├── SmartTagAction.cs │ │ ├── SmartTagActions.cs │ │ ├── SmartTagOptions.cs │ │ ├── SmartTagRecognizer.cs │ │ ├── SmartTagRecognizers.cs │ │ ├── SmartTags.cs │ │ ├── Sort.cs │ │ ├── SortField.cs │ │ ├── SortFields.cs │ │ ├── SoundNote.cs │ │ ├── SparkAxes.cs │ │ ├── SparkColor.cs │ │ ├── SparkHorizontalAxis.cs │ │ ├── SparkPoints.cs │ │ ├── SparkVerticalAxis.cs │ │ ├── Sparkline.cs │ │ ├── SparklineGroup.cs │ │ ├── SparklineGroups.cs │ │ ├── Speech.cs │ │ ├── SpellingOptions.cs │ │ ├── Spinner.cs │ │ ├── Spinners.cs │ │ ├── Style.cs │ │ ├── Styles.cs │ │ ├── Tab.cs │ │ ├── TableObject.cs │ │ ├── TableStyle.cs │ │ ├── TableStyleElement.cs │ │ ├── TableStyleElements.cs │ │ ├── TableStyles.cs │ │ ├── TextBox.cs │ │ ├── TextBoxes.cs │ │ ├── TextConnection.cs │ │ ├── TextEffectFormat.cs │ │ ├── TextFrame.cs │ │ ├── TextFrame2.cs │ │ ├── ThreeDFormat.cs │ │ ├── TickLabels.cs │ │ ├── TimelineState.cs │ │ ├── TimelineViewState.cs │ │ ├── Toolbar.cs │ │ ├── ToolbarButton.cs │ │ ├── ToolbarButtons.cs │ │ ├── Toolbars.cs │ │ ├── Top10.cs │ │ ├── TreeviewControl.cs │ │ ├── Trendline.cs │ │ ├── Trendlines.cs │ │ ├── UniqueValues.cs │ │ ├── UpBars.cs │ │ ├── UsedObjects.cs │ │ ├── UserAccess.cs │ │ ├── UserAccessList.cs │ │ ├── VPageBreak.cs │ │ ├── VPageBreaks.cs │ │ ├── Validation.cs │ │ ├── ValueChange.cs │ │ ├── Walls.cs │ │ ├── Watch.cs │ │ ├── Watches.cs │ │ ├── WebOptions.cs │ │ ├── Window.cs │ │ ├── Windows.cs │ │ ├── WorkbookConnection.cs │ │ ├── Workbooks.cs │ │ ├── WorksheetDataConnection.cs │ │ ├── WorksheetFunction.cs │ │ ├── WorksheetView.cs │ │ ├── Worksheets.cs │ │ ├── XPath.cs │ │ ├── XmlDataBinding.cs │ │ ├── XmlMap.cs │ │ ├── XmlMaps.cs │ │ ├── XmlNamespace.cs │ │ ├── XmlNamespaces.cs │ │ ├── XmlSchema.cs │ │ ├── XmlSchemas.cs │ │ ├── _Application.cs │ │ ├── _Chart.cs │ │ ├── _OLEObject.cs │ │ ├── _QueryTable.cs │ │ ├── _Workbook.cs │ │ └── _Worksheet.cs │ ├── Enums │ │ ├── Constants.cs │ │ ├── XlAboveBelow.cs │ │ ├── XlActionType.cs │ │ ├── XlAllocation.cs │ │ ├── XlAllocationMethod.cs │ │ ├── XlAllocationValue.cs │ │ ├── XlApplicationInternational.cs │ │ ├── XlApplyNamesOrder.cs │ │ ├── XlArabicModes.cs │ │ ├── XlArrangeStyle.cs │ │ ├── XlArrowHeadLength.cs │ │ ├── XlArrowHeadStyle.cs │ │ ├── XlArrowHeadWidth.cs │ │ ├── XlAutoFillType.cs │ │ ├── XlAutoFilterOperator.cs │ │ ├── XlAxisCrosses.cs │ │ ├── XlAxisGroup.cs │ │ ├── XlAxisType.cs │ │ ├── XlBackground.cs │ │ ├── XlBarShape.cs │ │ ├── XlBorderWeight.cs │ │ ├── XlBordersIndex.cs │ │ ├── XlBuiltInDialog.cs │ │ ├── XlCVError.cs │ │ ├── XlCalcFor.cs │ │ ├── XlCalcMemNumberFormatType.cs │ │ ├── XlCalculatedMemberType.cs │ │ ├── XlCalculation.cs │ │ ├── XlCalculationInterruptKey.cs │ │ ├── XlCalculationState.cs │ │ ├── XlCategoryLabelLevel.cs │ │ ├── XlCategoryType.cs │ │ ├── XlCellChangedState.cs │ │ ├── XlCellInsertionMode.cs │ │ ├── XlCellType.cs │ │ ├── XlChartElementPosition.cs │ │ ├── XlChartGallery.cs │ │ ├── XlChartItem.cs │ │ ├── XlChartLocation.cs │ │ ├── XlChartPicturePlacement.cs │ │ ├── XlChartPictureType.cs │ │ ├── XlChartSplitType.cs │ │ ├── XlChartType.cs │ │ ├── XlCheckInVersionType.cs │ │ ├── XlClipboardFormat.cs │ │ ├── XlCmdType.cs │ │ ├── XlColorIndex.cs │ │ ├── XlCommandUnderlines.cs │ │ ├── XlCommentDisplayMode.cs │ │ ├── XlConditionValueTypes.cs │ │ ├── XlConnectionType.cs │ │ ├── XlConsolidationFunction.cs │ │ ├── XlContainsOperator.cs │ │ ├── XlCopyPictureFormat.cs │ │ ├── XlCorruptLoad.cs │ │ ├── XlCreator.cs │ │ ├── XlCredentialsMethod.cs │ │ ├── XlCubeFieldSubType.cs │ │ ├── XlCubeFieldType.cs │ │ ├── XlCutCopyMode.cs │ │ ├── XlDVAlertStyle.cs │ │ ├── XlDVType.cs │ │ ├── XlDataBarAxisPosition.cs │ │ ├── XlDataBarBorderType.cs │ │ ├── XlDataBarFillType.cs │ │ ├── XlDataBarNegativeColorType.cs │ │ ├── XlDataLabelPosition.cs │ │ ├── XlDataLabelSeparator.cs │ │ ├── XlDataLabelsType.cs │ │ ├── XlDataSeriesDate.cs │ │ ├── XlDataSeriesType.cs │ │ ├── XlDeleteShiftDirection.cs │ │ ├── XlDirection.cs │ │ ├── XlDisplayBlanksAs.cs │ │ ├── XlDisplayUnit.cs │ │ ├── XlDupeUnique.cs │ │ ├── XlDynamicFilterCriteria.cs │ │ ├── XlEditionFormat.cs │ │ ├── XlEditionOptionsOption.cs │ │ ├── XlEditionType.cs │ │ ├── XlEnableCancelKey.cs │ │ ├── XlEnableSelection.cs │ │ ├── XlEndStyleCap.cs │ │ ├── XlErrorBarDirection.cs │ │ ├── XlErrorBarInclude.cs │ │ ├── XlErrorBarType.cs │ │ ├── XlErrorChecks.cs │ │ ├── XlFileAccess.cs │ │ ├── XlFileFormat.cs │ │ ├── XlFileValidationPivotMode.cs │ │ ├── XlFillWith.cs │ │ ├── XlFilterAction.cs │ │ ├── XlFilterAllDatesInPeriod.cs │ │ ├── XlFilterStatus.cs │ │ ├── XlFindLookIn.cs │ │ ├── XlFixedFormatQuality.cs │ │ ├── XlFixedFormatType.cs │ │ ├── XlFormControl.cs │ │ ├── XlFormatConditionOperator.cs │ │ ├── XlFormatConditionType.cs │ │ ├── XlFormatFilterTypes.cs │ │ ├── XlFormulaLabel.cs │ │ ├── XlGenerateTableRefs.cs │ │ ├── XlGradientFillType.cs │ │ ├── XlHAlign.cs │ │ ├── XlHebrewModes.cs │ │ ├── XlHighlightChangesTime.cs │ │ ├── XlHtmlType.cs │ │ ├── XlIMEMode.cs │ │ ├── XlIcon.cs │ │ ├── XlIconSet.cs │ │ ├── XlImportDataAs.cs │ │ ├── XlInsertFormatOrigin.cs │ │ ├── XlInsertShiftDirection.cs │ │ ├── XlLayoutFormType.cs │ │ ├── XlLayoutRowType.cs │ │ ├── XlLegendPosition.cs │ │ ├── XlLineStyle.cs │ │ ├── XlLink.cs │ │ ├── XlLinkInfo.cs │ │ ├── XlLinkInfoType.cs │ │ ├── XlLinkStatus.cs │ │ ├── XlLinkType.cs │ │ ├── XlListConflict.cs │ │ ├── XlListDataType.cs │ │ ├── XlListObjectSourceType.cs │ │ ├── XlLocationInTable.cs │ │ ├── XlLookAt.cs │ │ ├── XlLookFor.cs │ │ ├── XlMSApplication.cs │ │ ├── XlMailSystem.cs │ │ ├── XlMarkerStyle.cs │ │ ├── XlMeasurementUnits.cs │ │ ├── XlModelChangeSource.cs │ │ ├── XlMouseButton.cs │ │ ├── XlMousePointer.cs │ │ ├── XlOLEType.cs │ │ ├── XlOLEVerb.cs │ │ ├── XlOartHorizontalOverflow.cs │ │ ├── XlOartVerticalOverflow.cs │ │ ├── XlObjectSize.cs │ │ ├── XlOrder.cs │ │ ├── XlOrientation.cs │ │ ├── XlPTSelectionMode.cs │ │ ├── XlPageBreak.cs │ │ ├── XlPageBreakExtent.cs │ │ ├── XlPageOrientation.cs │ │ ├── XlPaperSize.cs │ │ ├── XlParameterDataType.cs │ │ ├── XlParameterType.cs │ │ ├── XlPasteSpecialOperation.cs │ │ ├── XlPasteType.cs │ │ ├── XlPattern.cs │ │ ├── XlPhoneticAlignment.cs │ │ ├── XlPhoneticCharacterType.cs │ │ ├── XlPictureAppearance.cs │ │ ├── XlPictureConvertorType.cs │ │ ├── XlPieSliceIndex.cs │ │ ├── XlPieSliceLocation.cs │ │ ├── XlPivotCellType.cs │ │ ├── XlPivotConditionScope.cs │ │ ├── XlPivotFieldCalculation.cs │ │ ├── XlPivotFieldDataType.cs │ │ ├── XlPivotFieldOrientation.cs │ │ ├── XlPivotFieldRepeatLabels.cs │ │ ├── XlPivotFilterType.cs │ │ ├── XlPivotLineType.cs │ │ ├── XlPivotTableMissingItems.cs │ │ ├── XlPivotTableSourceType.cs │ │ ├── XlPivotTableVersionList.cs │ │ ├── XlPlacement.cs │ │ ├── XlPlatform.cs │ │ ├── XlPortugueseReform.cs │ │ ├── XlPrintErrors.cs │ │ ├── XlPrintLocation.cs │ │ ├── XlPriority.cs │ │ ├── XlPropertyDisplayedIn.cs │ │ ├── XlProtectedViewCloseReason.cs │ │ ├── XlProtectedViewWindowState.cs │ │ ├── XlQuickAnalysisMode.cs │ │ ├── XlRangeAutoFormat.cs │ │ ├── XlRangeValueDataType.cs │ │ ├── XlReferenceStyle.cs │ │ ├── XlReferenceType.cs │ │ ├── XlRemoveDocInfoType.cs │ │ ├── XlRgbColor.cs │ │ ├── XlRobustConnect.cs │ │ ├── XlRoutingSlipDelivery.cs │ │ ├── XlRoutingSlipStatus.cs │ │ ├── XlRowCol.cs │ │ ├── XlRunAutoMacro.cs │ │ ├── XlSaveAction.cs │ │ ├── XlSaveAsAccessMode.cs │ │ ├── XlSaveConflictResolution.cs │ │ ├── XlScaleType.cs │ │ ├── XlSearchDirection.cs │ │ ├── XlSearchOrder.cs │ │ ├── XlSearchWithin.cs │ │ ├── XlSeriesNameLevel.cs │ │ ├── XlSheetType.cs │ │ ├── XlSheetVisibility.cs │ │ ├── XlSizeRepresents.cs │ │ ├── XlSlicerCacheType.cs │ │ ├── XlSlicerCrossFilterType.cs │ │ ├── XlSlicerSort.cs │ │ ├── XlSmartTagControlType.cs │ │ ├── XlSmartTagDisplayMode.cs │ │ ├── XlSortDataOption.cs │ │ ├── XlSortMethod.cs │ │ ├── XlSortMethodOld.cs │ │ ├── XlSortOn.cs │ │ ├── XlSortOrder.cs │ │ ├── XlSortOrientation.cs │ │ ├── XlSortType.cs │ │ ├── XlSourceType.cs │ │ ├── XlSpanishModes.cs │ │ ├── XlSparkScale.cs │ │ ├── XlSparkType.cs │ │ ├── XlSparklineRowCol.cs │ │ ├── XlSpeakDirection.cs │ │ ├── XlSpecialCellsValue.cs │ │ ├── XlStdColorScale.cs │ │ ├── XlSubscribeToFormat.cs │ │ ├── XlSummaryColumn.cs │ │ ├── XlSummaryReportType.cs │ │ ├── XlSummaryRow.cs │ │ ├── XlTabPosition.cs │ │ ├── XlTableStyleElementType.cs │ │ ├── XlTextParsingType.cs │ │ ├── XlTextQualifier.cs │ │ ├── XlTextVisualLayoutType.cs │ │ ├── XlThemeColor.cs │ │ ├── XlThemeFont.cs │ │ ├── XlThreadMode.cs │ │ ├── XlTickLabelOrientation.cs │ │ ├── XlTickLabelPosition.cs │ │ ├── XlTickMark.cs │ │ ├── XlTimeMoving.cs │ │ ├── XlTimePeriods.cs │ │ ├── XlTimeUnit.cs │ │ ├── XlTimelineLevel.cs │ │ ├── XlToolbarProtection.cs │ │ ├── XlTopBottom.cs │ │ ├── XlTotalsCalculation.cs │ │ ├── XlTrendlineType.cs │ │ ├── XlUnderlineStyle.cs │ │ ├── XlUpdateLinks.cs │ │ ├── XlVAlign.cs │ │ ├── XlWBATemplate.cs │ │ ├── XlWindowState.cs │ │ ├── XlWindowType.cs │ │ ├── XlWindowView.cs │ │ ├── XlXLMMacroType.cs │ │ ├── XlXmlExportResult.cs │ │ ├── XlXmlImportResult.cs │ │ ├── XlXmlLoadOption.cs │ │ ├── XlYesNoGuess.cs │ │ ├── xLSubtototalLocationType.cs │ │ ├── xlColumnDataType.cs │ │ ├── xlDisplayDrawingObjects.cs │ │ ├── xlPivotFormatType.cs │ │ ├── xlQueryType.cs │ │ ├── xlWebFormatting.cs │ │ └── xlWebSelectionType.cs │ ├── EventInterfaces │ │ ├── AppEvents.cs │ │ ├── ChartEvents.cs │ │ ├── DocEvents.cs │ │ ├── OLEObjectEvents.cs │ │ ├── RefreshEvents.cs │ │ └── WorkbookEvents.cs │ ├── ExcelApi.csproj │ ├── Interfaces │ │ ├── IAboveAverage.cs │ │ ├── IAction.cs │ │ ├── IActions.cs │ │ ├── IAddIn.cs │ │ ├── IAddIns.cs │ │ ├── IAddIns2.cs │ │ ├── IAllowEditRange.cs │ │ ├── IAllowEditRanges.cs │ │ ├── IAppEvents.cs │ │ ├── IArc.cs │ │ ├── IArcs.cs │ │ ├── IAreas.cs │ │ ├── IAutoCorrect.cs │ │ ├── IAutoFilter.cs │ │ ├── IAutoRecover.cs │ │ ├── IAxes.cs │ │ ├── IAxis.cs │ │ ├── IAxisTitle.cs │ │ ├── IBorder.cs │ │ ├── IBorders.cs │ │ ├── IButton.cs │ │ ├── IButtons.cs │ │ ├── ICalculatedFields.cs │ │ ├── ICalculatedItems.cs │ │ ├── ICalculatedMember.cs │ │ ├── ICalculatedMembers.cs │ │ ├── ICanvasShapes.cs │ │ ├── ICategoryCollection.cs │ │ ├── ICellFormat.cs │ │ ├── ICharacters.cs │ │ ├── IChartArea.cs │ │ ├── IChartCategory.cs │ │ ├── IChartColorFormat.cs │ │ ├── IChartEvents.cs │ │ ├── IChartFillFormat.cs │ │ ├── IChartFormat.cs │ │ ├── IChartGroup.cs │ │ ├── IChartGroups.cs │ │ ├── IChartObject.cs │ │ ├── IChartObjects.cs │ │ ├── IChartTitle.cs │ │ ├── IChartView.cs │ │ ├── ICharts.cs │ │ ├── ICheckBox.cs │ │ ├── ICheckBoxes.cs │ │ ├── IColorScale.cs │ │ ├── IColorScaleCriteria.cs │ │ ├── IColorScaleCriterion.cs │ │ ├── IColorStop.cs │ │ ├── IColorStops.cs │ │ ├── IComment.cs │ │ ├── IComments.cs │ │ ├── IConditionValue.cs │ │ ├── IConnections.cs │ │ ├── IConnectorFormat.cs │ │ ├── IControlFormat.cs │ │ ├── ICorners.cs │ │ ├── ICustomProperties.cs │ │ ├── ICustomProperty.cs │ │ ├── ICustomView.cs │ │ ├── ICustomViews.cs │ │ ├── IDataBarBorder.cs │ │ ├── IDataFeedConnection.cs │ │ ├── IDataLabel.cs │ │ ├── IDataLabels.cs │ │ ├── IDataTable.cs │ │ ├── IDatabar.cs │ │ ├── IDiagram.cs │ │ ├── IDialog.cs │ │ ├── IDialogFrame.cs │ │ ├── IDialogSheet.cs │ │ ├── IDialogSheetView.cs │ │ ├── IDialogSheets.cs │ │ ├── IDialogs.cs │ │ ├── IDisplayFormat.cs │ │ ├── IDisplayUnitLabel.cs │ │ ├── IDocEvents.cs │ │ ├── IDownBars.cs │ │ ├── IDrawing.cs │ │ ├── IDrawingObjects.cs │ │ ├── IDrawings.cs │ │ ├── IDropDown.cs │ │ ├── IDropDowns.cs │ │ ├── IDropLines.cs │ │ ├── IDummy.cs │ │ ├── IEditBox.cs │ │ ├── IEditBoxes.cs │ │ ├── IError.cs │ │ ├── IErrorBars.cs │ │ ├── IErrorCheckingOptions.cs │ │ ├── IErrors.cs │ │ ├── IFileExportConverter.cs │ │ ├── IFileExportConverters.cs │ │ ├── IFilter.cs │ │ ├── IFilters.cs │ │ ├── IFloor.cs │ │ ├── IFont.cs │ │ ├── IFormatColor.cs │ │ ├── IFormatCondition.cs │ │ ├── IFormatConditions.cs │ │ ├── IFreeformBuilder.cs │ │ ├── IFullSeriesCollection.cs │ │ ├── IGraphic.cs │ │ ├── IGridlines.cs │ │ ├── IGroupBox.cs │ │ ├── IGroupBoxes.cs │ │ ├── IGroupObject.cs │ │ ├── IGroupObjects.cs │ │ ├── IGroupShapes.cs │ │ ├── IHPageBreak.cs │ │ ├── IHPageBreaks.cs │ │ ├── IHeaderFooter.cs │ │ ├── IHiLoLines.cs │ │ ├── IHyperlink.cs │ │ ├── IHyperlinks.cs │ │ ├── IIcon.cs │ │ ├── IIconCriteria.cs │ │ ├── IIconCriterion.cs │ │ ├── IIconSet.cs │ │ ├── IIconSetCondition.cs │ │ ├── IIconSets.cs │ │ ├── IInterior.cs │ │ ├── ILabel.cs │ │ ├── ILabels.cs │ │ ├── ILeaderLines.cs │ │ ├── ILegend.cs │ │ ├── ILegendEntries.cs │ │ ├── ILegendEntry.cs │ │ ├── ILegendKey.cs │ │ ├── ILine.cs │ │ ├── ILinearGradient.cs │ │ ├── ILines.cs │ │ ├── ILinkFormat.cs │ │ ├── IListBox.cs │ │ ├── IListBoxes.cs │ │ ├── IListColumn.cs │ │ ├── IListColumns.cs │ │ ├── IListDataFormat.cs │ │ ├── IListObject.cs │ │ ├── IListObjects.cs │ │ ├── IListRow.cs │ │ ├── IListRows.cs │ │ ├── IMailer.cs │ │ ├── IMenu.cs │ │ ├── IMenuBar.cs │ │ ├── IMenuBars.cs │ │ ├── IMenuItem.cs │ │ ├── IMenuItems.cs │ │ ├── IMenus.cs │ │ ├── IModel.cs │ │ ├── IModelChanges.cs │ │ ├── IModelColumnChange.cs │ │ ├── IModelColumnChanges.cs │ │ ├── IModelColumnName.cs │ │ ├── IModelColumnNames.cs │ │ ├── IModelConnection.cs │ │ ├── IModelMeasureName.cs │ │ ├── IModelMeasureNames.cs │ │ ├── IModelRelationship.cs │ │ ├── IModelRelationships.cs │ │ ├── IModelTable.cs │ │ ├── IModelTableColumn.cs │ │ ├── IModelTableColumns.cs │ │ ├── IModelTableNameChange.cs │ │ ├── IModelTableNameChanges.cs │ │ ├── IModelTableNames.cs │ │ ├── IModelTables.cs │ │ ├── IModule.cs │ │ ├── IModuleView.cs │ │ ├── IModules.cs │ │ ├── IMultiThreadedCalculation.cs │ │ ├── IName.cs │ │ ├── INames.cs │ │ ├── INegativeBarFormat.cs │ │ ├── IODBCConnection.cs │ │ ├── IODBCError.cs │ │ ├── IODBCErrors.cs │ │ ├── IOLEDBConnection.cs │ │ ├── IOLEDBError.cs │ │ ├── IOLEDBErrors.cs │ │ ├── IOLEFormat.cs │ │ ├── IOLEObjectEvents.cs │ │ ├── IOLEObjects.cs │ │ ├── IOptionButton.cs │ │ ├── IOptionButtons.cs │ │ ├── IOutline.cs │ │ ├── IOval.cs │ │ ├── IOvals.cs │ │ ├── IPage.cs │ │ ├── IPageSetup.cs │ │ ├── IPages.cs │ │ ├── IPane.cs │ │ ├── IPanes.cs │ │ ├── IParameter.cs │ │ ├── IParameters.cs │ │ ├── IPhonetic.cs │ │ ├── IPhonetics.cs │ │ ├── IPicture.cs │ │ ├── IPictures.cs │ │ ├── IPivotAxis.cs │ │ ├── IPivotCache.cs │ │ ├── IPivotCaches.cs │ │ ├── IPivotCell.cs │ │ ├── IPivotField.cs │ │ ├── IPivotFields.cs │ │ ├── IPivotFilter.cs │ │ ├── IPivotFilters.cs │ │ ├── IPivotFormula.cs │ │ ├── IPivotFormulas.cs │ │ ├── IPivotItem.cs │ │ ├── IPivotItemList.cs │ │ ├── IPivotItems.cs │ │ ├── IPivotLayout.cs │ │ ├── IPivotLine.cs │ │ ├── IPivotLineCells.cs │ │ ├── IPivotLines.cs │ │ ├── IPivotTable.cs │ │ ├── IPivotTableChangeList.cs │ │ ├── IPivotTables.cs │ │ ├── IPivotValueCell.cs │ │ ├── IPlotArea.cs │ │ ├── IPoint.cs │ │ ├── IPoints.cs │ │ ├── IProtectedViewWindow.cs │ │ ├── IProtectedViewWindows.cs │ │ ├── IProtection.cs │ │ ├── IPublishObjects.cs │ │ ├── IQueryTables.cs │ │ ├── IQuickAnalysis.cs │ │ ├── IRTD.cs │ │ ├── IRange.cs │ │ ├── IRanges.cs │ │ ├── IRecentFile.cs │ │ ├── IRecentFiles.cs │ │ ├── IRectangle.cs │ │ ├── IRectangles.cs │ │ ├── IRectangularGradient.cs │ │ ├── IRefreshEvents.cs │ │ ├── IResearch.cs │ │ ├── IRoutingSlip.cs │ │ ├── IScenario.cs │ │ ├── IScenarios.cs │ │ ├── IScrollBar.cs │ │ ├── IScrollBars.cs │ │ ├── ISeries.cs │ │ ├── ISeriesCollection.cs │ │ ├── ISeriesLines.cs │ │ ├── IServerViewableItems.cs │ │ ├── IShape.cs │ │ ├── IShapeRange.cs │ │ ├── IShapes.cs │ │ ├── ISheetViews.cs │ │ ├── ISlicer.cs │ │ ├── ISlicerCache.cs │ │ ├── ISlicerCacheLevel.cs │ │ ├── ISlicerCacheLevels.cs │ │ ├── ISlicerCaches.cs │ │ ├── ISlicerItem.cs │ │ ├── ISlicerItems.cs │ │ ├── ISlicerPivotTables.cs │ │ ├── ISlicers.cs │ │ ├── ISmartTag.cs │ │ ├── ISmartTagAction.cs │ │ ├── ISmartTagActions.cs │ │ ├── ISmartTagOptions.cs │ │ ├── ISmartTagRecognizer.cs │ │ ├── ISmartTagRecognizers.cs │ │ ├── ISmartTags.cs │ │ ├── ISort.cs │ │ ├── ISortField.cs │ │ ├── ISortFields.cs │ │ ├── ISoundNote.cs │ │ ├── ISparkAxes.cs │ │ ├── ISparkColor.cs │ │ ├── ISparkHorizontalAxis.cs │ │ ├── ISparkPoints.cs │ │ ├── ISparkVerticalAxis.cs │ │ ├── ISparkline.cs │ │ ├── ISparklineGroup.cs │ │ ├── ISparklineGroups.cs │ │ ├── ISpeech.cs │ │ ├── ISpellingOptions.cs │ │ ├── ISpinner.cs │ │ ├── ISpinners.cs │ │ ├── IStyle.cs │ │ ├── IStyles.cs │ │ ├── ITab.cs │ │ ├── ITableObject.cs │ │ ├── ITableStyle.cs │ │ ├── ITableStyleElement.cs │ │ ├── ITableStyleElements.cs │ │ ├── ITableStyles.cs │ │ ├── ITextBox.cs │ │ ├── ITextBoxes.cs │ │ ├── ITextConnection.cs │ │ ├── ITextFrame.cs │ │ ├── ITickLabels.cs │ │ ├── ITimelineState.cs │ │ ├── ITimelineViewState.cs │ │ ├── IToolbar.cs │ │ ├── IToolbarButton.cs │ │ ├── IToolbarButtons.cs │ │ ├── IToolbars.cs │ │ ├── ITop10.cs │ │ ├── ITrendline.cs │ │ ├── ITrendlines.cs │ │ ├── IUniqueValues.cs │ │ ├── IUpBars.cs │ │ ├── IUsedObjects.cs │ │ ├── IUserAccess.cs │ │ ├── IUserAccessList.cs │ │ ├── IVPageBreak.cs │ │ ├── IVPageBreaks.cs │ │ ├── IValidation.cs │ │ ├── IValueChange.cs │ │ ├── IWalls.cs │ │ ├── IWatch.cs │ │ ├── IWatches.cs │ │ ├── IWindow.cs │ │ ├── IWindows.cs │ │ ├── IWorkbookConnection.cs │ │ ├── IWorkbookEvents.cs │ │ ├── IWorksheetDataConnection.cs │ │ ├── IWorksheetFunction.cs │ │ ├── IWorksheetView.cs │ │ ├── IWorksheets.cs │ │ ├── IXPath.cs │ │ ├── IXmlDataBinding.cs │ │ ├── IXmlMap.cs │ │ ├── IXmlMaps.cs │ │ ├── IXmlNamespace.cs │ │ ├── IXmlNamespaces.cs │ │ ├── IXmlSchema.cs │ │ ├── IXmlSchemas.cs │ │ ├── _IOLEObject.cs │ │ └── _IQueryTable.cs │ ├── Modules │ │ └── Global.cs │ ├── Tools │ │ ├── COMAddin.cs │ │ ├── ITaskPane.cs │ │ └── Utils │ │ │ ├── CommonUtils.cs │ │ │ ├── DocumentFormat.cs │ │ │ └── FileUtils.cs │ └── Utils │ │ └── ProjectInfo.cs ├── MSComctlLib │ ├── AssemblyInfo.cs │ ├── Classes │ │ ├── Button.cs │ │ ├── ButtonMenu.cs │ │ ├── ButtonMenus.cs │ │ ├── Buttons.cs │ │ ├── ColumnHeader.cs │ │ ├── ColumnHeaders.cs │ │ ├── ComboItem.cs │ │ ├── ComboItems.cs │ │ ├── Controls.cs │ │ ├── DataObject.cs │ │ ├── DataObjectFiles.cs │ │ ├── ImageCombo.cs │ │ ├── ImageList.cs │ │ ├── ListImage.cs │ │ ├── ListImages.cs │ │ ├── ListItem.cs │ │ ├── ListItems.cs │ │ ├── ListSubItem.cs │ │ ├── ListSubItems.cs │ │ ├── ListView.cs │ │ ├── Node.cs │ │ ├── Nodes.cs │ │ ├── Panel.cs │ │ ├── Panels.cs │ │ ├── ProgressBar.cs │ │ ├── Slider.cs │ │ ├── StatusBar.cs │ │ ├── Tab.cs │ │ ├── TabStrip.cs │ │ ├── Tabs.cs │ │ ├── Toolbar.cs │ │ └── TreeView.cs │ ├── DispatchInterfaces │ │ ├── IButton.cs │ │ ├── IButtonMenu.cs │ │ ├── IButtonMenus.cs │ │ ├── IButtons.cs │ │ ├── IColumnHeader.cs │ │ ├── IColumnHeaders.cs │ │ ├── IComboItem.cs │ │ ├── IComboItems.cs │ │ ├── IControls.cs │ │ ├── IImage.cs │ │ ├── IImageCombo.cs │ │ ├── IImageList.cs │ │ ├── IImages.cs │ │ ├── IListItem.cs │ │ ├── IListItems.cs │ │ ├── IListSubItem.cs │ │ ├── IListSubItems.cs │ │ ├── IListView.cs │ │ ├── INode.cs │ │ ├── INodes.cs │ │ ├── IPanel.cs │ │ ├── IPanels.cs │ │ ├── IProgressBar.cs │ │ ├── ISlider.cs │ │ ├── IStatusBar.cs │ │ ├── ITab.cs │ │ ├── ITabStrip.cs │ │ ├── ITabs.cs │ │ ├── IToolbar.cs │ │ ├── ITreeView.cs │ │ ├── IVBDataObject.cs │ │ └── IVBDataObjectFiles.cs │ ├── Enums │ │ ├── AppearanceConstants.cs │ │ ├── BorderStyleConstants.cs │ │ ├── ButtonStyleConstants.cs │ │ ├── ClipBoardConstants.cs │ │ ├── DragOverConstants.cs │ │ ├── ErrorConstants.cs │ │ ├── ImageComboStyleConstants.cs │ │ ├── ImageDrawConstants.cs │ │ ├── LabelEditConstants.cs │ │ ├── ListArrangeConstants.cs │ │ ├── ListColumnAlignmentConstants.cs │ │ ├── ListFindItemHowConstants.cs │ │ ├── ListFindItemWhereConstants.cs │ │ ├── ListLabelEditConstants.cs │ │ ├── ListPictureAlignmentConstants.cs │ │ ├── ListSortOrderConstants.cs │ │ ├── ListTextBackgroundConstants.cs │ │ ├── ListViewConstants.cs │ │ ├── MousePointerConstants.cs │ │ ├── OLEDragConstants.cs │ │ ├── OLEDropConstants.cs │ │ ├── OLEDropEffectConstants.cs │ │ ├── OrientationConstants.cs │ │ ├── PanelAlignmentConstants.cs │ │ ├── PanelAutoSizeConstants.cs │ │ ├── PanelBevelConstants.cs │ │ ├── PanelStyleConstants.cs │ │ ├── PlacementConstants.cs │ │ ├── SbarStyleConstants.cs │ │ ├── ScrollingConstants.cs │ │ ├── TabSelStyleConstants.cs │ │ ├── TabStyleConstants.cs │ │ ├── TabWidthStyleConstants.cs │ │ ├── TextPositionConstants.cs │ │ ├── TickStyleConstants.cs │ │ ├── ToolbarStyleConstants.cs │ │ ├── ToolbarTextAlignConstants.cs │ │ ├── TreeLineStyleConstants.cs │ │ ├── TreeRelationshipConstants.cs │ │ ├── TreeStyleConstants.cs │ │ ├── VB4AppearanceConstants.cs │ │ └── ValueConstants.cs │ ├── EventInterfaces │ │ ├── DImageComboEvents.cs │ │ ├── IProgressBarEvents.cs │ │ ├── ISliderEvents.cs │ │ ├── IStatusBarEvents.cs │ │ ├── ITabStripEvents.cs │ │ ├── IToolbarEvents.cs │ │ ├── ITreeViewEvents.cs │ │ ├── ImageListEvents.cs │ │ └── ListViewEvents.cs │ ├── MSComctlLibApi.csproj │ └── Utils │ │ └── ProjectInfo.cs ├── MSDATASRC │ ├── AssemblyInfo.cs │ ├── Interfaces │ │ ├── DataSource.cs │ │ └── DataSourceListener.cs │ ├── MSDATASRCApi.csproj │ └── Utils │ │ └── ProjectInfo.cs ├── MSForms │ ├── AssemblyInfo.cs │ ├── Classes │ │ ├── CheckBox.cs │ │ ├── ComboBox.cs │ │ ├── CommandButton.cs │ │ ├── Control.cs │ │ ├── DataObject.cs │ │ ├── Frame.cs │ │ ├── HTMLCheckbox.cs │ │ ├── HTMLHidden.cs │ │ ├── HTMLImage.cs │ │ ├── HTMLOption.cs │ │ ├── HTMLPassword.cs │ │ ├── HTMLReset.cs │ │ ├── HTMLSelect.cs │ │ ├── HTMLSubmit.cs │ │ ├── HTMLText.cs │ │ ├── HTMLTextArea.cs │ │ ├── Image.cs │ │ ├── Label.cs │ │ ├── ListBox.cs │ │ ├── MultiPage.cs │ │ ├── NewFont.cs │ │ ├── OptionButton.cs │ │ ├── Page.cs │ │ ├── ReturnBoolean.cs │ │ ├── ReturnEffect.cs │ │ ├── ReturnInteger.cs │ │ ├── ReturnSingle.cs │ │ ├── ReturnString.cs │ │ ├── ScrollBar.cs │ │ ├── SpinButton.cs │ │ ├── TabStrip.cs │ │ ├── TextBox.cs │ │ ├── ToggleButton.cs │ │ └── UserForm.cs │ ├── DispatchInterfaces │ │ ├── Controls.cs │ │ ├── Font.cs │ │ ├── ICommandButton.cs │ │ ├── IControl.cs │ │ ├── IDataAutoWrapper.cs │ │ ├── IImage.cs │ │ ├── ILabelControl.cs │ │ ├── IMdcCheckBox.cs │ │ ├── IMdcCombo.cs │ │ ├── IMdcList.cs │ │ ├── IMdcOptionButton.cs │ │ ├── IMdcText.cs │ │ ├── IMdcToggleButton.cs │ │ ├── IMultiPage.cs │ │ ├── IOptionFrame.cs │ │ ├── IPage.cs │ │ ├── IReturnBoolean.cs │ │ ├── IReturnEffect.cs │ │ ├── IReturnInteger.cs │ │ ├── IReturnSingle.cs │ │ ├── IReturnString.cs │ │ ├── IScrollbar.cs │ │ ├── ISpinbutton.cs │ │ ├── ITabStrip.cs │ │ ├── IWHTMLCheckbox.cs │ │ ├── IWHTMLHidden.cs │ │ ├── IWHTMLImage.cs │ │ ├── IWHTMLOption.cs │ │ ├── IWHTMLPassword.cs │ │ ├── IWHTMLReset.cs │ │ ├── IWHTMLSelect.cs │ │ ├── IWHTMLSubmitButton.cs │ │ ├── IWHTMLText.cs │ │ ├── IWHTMLTextArea.cs │ │ ├── Pages.cs │ │ ├── Tab.cs │ │ ├── Tabs.cs │ │ └── _UserForm.cs │ ├── Enums │ │ ├── fmAction.cs │ │ ├── fmAlignment.cs │ │ ├── fmBackStyle.cs │ │ ├── fmBorderStyle.cs │ │ ├── fmBorders.cs │ │ ├── fmButtonEffect.cs │ │ ├── fmButtonStyle.cs │ │ ├── fmCycle.cs │ │ ├── fmDisplayStyle.cs │ │ ├── fmDragBehavior.cs │ │ ├── fmDragState.cs │ │ ├── fmDropButtonStyle.cs │ │ ├── fmDropEffect.cs │ │ ├── fmEnAutoSize.cs │ │ ├── fmEnterFieldBehavior.cs │ │ ├── fmIMEMode.cs │ │ ├── fmLayoutEffect.cs │ │ ├── fmListBoxStyles.cs │ │ ├── fmListStyle.cs │ │ ├── fmMatchEntry.cs │ │ ├── fmMode.cs │ │ ├── fmMousePointer.cs │ │ ├── fmMultiSelect.cs │ │ ├── fmOrientation.cs │ │ ├── fmPicPosition.cs │ │ ├── fmPictureAlignment.cs │ │ ├── fmPicturePosition.cs │ │ ├── fmPictureSizeMode.cs │ │ ├── fmRepeatDirection.cs │ │ ├── fmScrollAction.cs │ │ ├── fmScrollBars.cs │ │ ├── fmShowDropButtonWhen.cs │ │ ├── fmShowListWhen.cs │ │ ├── fmSnapPoint.cs │ │ ├── fmSpecialEffect.cs │ │ ├── fmStyle.cs │ │ ├── fmTabOrientation.cs │ │ ├── fmTabStyle.cs │ │ ├── fmTextAlign.cs │ │ ├── fmTransitionEffect.cs │ │ ├── fmVerticalScrollBarSide.cs │ │ └── fmZOrder.cs │ ├── EventInterfaces │ │ ├── CommandButtonEvents.cs │ │ ├── ControlEvents.cs │ │ ├── FormEvents.cs │ │ ├── ImageEvents.cs │ │ ├── LabelControlEvents.cs │ │ ├── MdcCheckBoxEvents.cs │ │ ├── MdcComboEvents.cs │ │ ├── MdcListEvents.cs │ │ ├── MdcOptionButtonEvents.cs │ │ ├── MdcTextEvents.cs │ │ ├── MdcToggleButtonEvents.cs │ │ ├── MultiPageEvents.cs │ │ ├── OptionFrameEvents.cs │ │ ├── ScrollbarEvents.cs │ │ ├── SpinbuttonEvents.cs │ │ ├── TabStripEvents.cs │ │ ├── WHTMLControlEvents.cs │ │ ├── WHTMLControlEvents1.cs │ │ ├── WHTMLControlEvents10.cs │ │ ├── WHTMLControlEvents2.cs │ │ ├── WHTMLControlEvents3.cs │ │ ├── WHTMLControlEvents4.cs │ │ ├── WHTMLControlEvents5.cs │ │ ├── WHTMLControlEvents6.cs │ │ ├── WHTMLControlEvents7.cs │ │ └── WHTMLControlEvents9.cs │ ├── Interfaces │ │ └── IFont.cs │ ├── MSFormsApi.csproj │ └── Utils │ │ └── ProjectInfo.cs ├── MSHTML │ ├── AssemblyInfo.cs │ ├── Classes │ │ ├── BlockFormats.cs │ │ ├── CEventObj.cs │ │ ├── CMimeTypes.cs │ │ ├── COpsProfile.cs │ │ ├── CPlugins.cs │ │ ├── DOMChildrenCollection.cs │ │ ├── FontNames.cs │ │ ├── FramesCollection.cs │ │ ├── HTCAttachBehavior.cs │ │ ├── HTCDefaultDispatch.cs │ │ ├── HTCDescBehavior.cs │ │ ├── HTCEventBehavior.cs │ │ ├── HTCMethodBehavior.cs │ │ ├── HTCPropertyBehavior.cs │ │ ├── HTMLAnchorElement.cs │ │ ├── HTMLAppBehavior.cs │ │ ├── HTMLAreaElement.cs │ │ ├── HTMLAreasCollection.cs │ │ ├── HTMLAttributeCollection.cs │ │ ├── HTMLBGsound.cs │ │ ├── HTMLBRElement.cs │ │ ├── HTMLBaseElement.cs │ │ ├── HTMLBaseFontElement.cs │ │ ├── HTMLBlockElement.cs │ │ ├── HTMLBody.cs │ │ ├── HTMLButtonElement.cs │ │ ├── HTMLCommentElement.cs │ │ ├── HTMLCurrentStyle.cs │ │ ├── HTMLDDElement.cs │ │ ├── HTMLDListElement.cs │ │ ├── HTMLDOMAttribute.cs │ │ ├── HTMLDOMImplementation.cs │ │ ├── HTMLDOMTextNode.cs │ │ ├── HTMLDTElement.cs │ │ ├── HTMLDefaults.cs │ │ ├── HTMLDialog.cs │ │ ├── HTMLDivElement.cs │ │ ├── HTMLDivPosition.cs │ │ ├── HTMLDocument.cs │ │ ├── HTMLDocumentCompatibleInfo.cs │ │ ├── HTMLDocumentCompatibleInfoCollection.cs │ │ ├── HTMLElementCollection.cs │ │ ├── HTMLEmbed.cs │ │ ├── HTMLFieldSetElement.cs │ │ ├── HTMLFontElement.cs │ │ ├── HTMLFormElement.cs │ │ ├── HTMLFrameBase.cs │ │ ├── HTMLFrameElement.cs │ │ ├── HTMLFrameSetSite.cs │ │ ├── HTMLGenericElement.cs │ │ ├── HTMLHRElement.cs │ │ ├── HTMLHeadElement.cs │ │ ├── HTMLHeaderElement.cs │ │ ├── HTMLHistory.cs │ │ ├── HTMLHtmlElement.cs │ │ ├── HTMLIFrame.cs │ │ ├── HTMLImageElementFactory.cs │ │ ├── HTMLImg.cs │ │ ├── HTMLInputButtonElement.cs │ │ ├── HTMLInputElement.cs │ │ ├── HTMLInputFileElement.cs │ │ ├── HTMLInputTextElement.cs │ │ ├── HTMLIsIndexElement.cs │ │ ├── HTMLLIElement.cs │ │ ├── HTMLLabelElement.cs │ │ ├── HTMLLegendElement.cs │ │ ├── HTMLLinkElement.cs │ │ ├── HTMLListElement.cs │ │ ├── HTMLLocation.cs │ │ ├── HTMLMapElement.cs │ │ ├── HTMLMarqueeElement.cs │ │ ├── HTMLMetaElement.cs │ │ ├── HTMLNamespace.cs │ │ ├── HTMLNamespaceCollection.cs │ │ ├── HTMLNavigator.cs │ │ ├── HTMLNextIdElement.cs │ │ ├── HTMLNoShowElement.cs │ │ ├── HTMLOListElement.cs │ │ ├── HTMLObjectElement.cs │ │ ├── HTMLOptionButtonElement.cs │ │ ├── HTMLOptionElement.cs │ │ ├── HTMLOptionElementFactory.cs │ │ ├── HTMLParaElement.cs │ │ ├── HTMLParamElement.cs │ │ ├── HTMLPhraseElement.cs │ │ ├── HTMLPopup.cs │ │ ├── HTMLRenderStyle.cs │ │ ├── HTMLRichtextElement.cs │ │ ├── HTMLRuleStyle.cs │ │ ├── HTMLScreen.cs │ │ ├── HTMLScriptElement.cs │ │ ├── HTMLSelectElement.cs │ │ ├── HTMLSpanElement.cs │ │ ├── HTMLSpanFlow.cs │ │ ├── HTMLStorage.cs │ │ ├── HTMLStyle.cs │ │ ├── HTMLStyleElement.cs │ │ ├── HTMLStyleFontFace.cs │ │ ├── HTMLStyleSheet.cs │ │ ├── HTMLStyleSheetPage.cs │ │ ├── HTMLStyleSheetPagesCollection.cs │ │ ├── HTMLStyleSheetRule.cs │ │ ├── HTMLStyleSheetRulesCollection.cs │ │ ├── HTMLStyleSheetsCollection.cs │ │ ├── HTMLTable.cs │ │ ├── HTMLTableCaption.cs │ │ ├── HTMLTableCell.cs │ │ ├── HTMLTableCol.cs │ │ ├── HTMLTableRow.cs │ │ ├── HTMLTableSection.cs │ │ ├── HTMLTextAreaElement.cs │ │ ├── HTMLTextElement.cs │ │ ├── HTMLTitleElement.cs │ │ ├── HTMLUListElement.cs │ │ ├── HTMLUnknownElement.cs │ │ ├── HTMLUrnCollection.cs │ │ ├── HTMLWindow2.cs │ │ ├── HTMLWindowProxy.cs │ │ ├── HTMLWndOptionElement.cs │ │ ├── HTMLWndSelectElement.cs │ │ ├── HTMLXMLHttpRequest.cs │ │ ├── HTMLXMLHttpRequestFactory.cs │ │ ├── HtmlDlgSafeHelper.cs │ │ ├── OldHTMLDocument.cs │ │ ├── OldHTMLFormElement.cs │ │ ├── Scriptlet.cs │ │ ├── StaticNodeList.cs │ │ ├── ThreadDialogProcParam.cs │ │ ├── XDomainRequest.cs │ │ ├── XDomainRequestFactory.cs │ │ └── htmlInputImage.cs │ ├── DispatchInterfaces │ │ ├── DispCEventObj.cs │ │ ├── DispCPlugins.cs │ │ ├── DispDOMChildrenCollection.cs │ │ ├── DispHTCAttachBehavior.cs │ │ ├── DispHTCDefaultDispatch.cs │ │ ├── DispHTCDescBehavior.cs │ │ ├── DispHTCEventBehavior.cs │ │ ├── DispHTCMethodBehavior.cs │ │ ├── DispHTCPropertyBehavior.cs │ │ ├── DispHTMLAnchorElement.cs │ │ ├── DispHTMLAppBehavior.cs │ │ ├── DispHTMLAreaElement.cs │ │ ├── DispHTMLAreasCollection.cs │ │ ├── DispHTMLAttributeCollection.cs │ │ ├── DispHTMLBGsound.cs │ │ ├── DispHTMLBRElement.cs │ │ ├── DispHTMLBaseElement.cs │ │ ├── DispHTMLBaseFontElement.cs │ │ ├── DispHTMLBlockElement.cs │ │ ├── DispHTMLBody.cs │ │ ├── DispHTMLButtonElement.cs │ │ ├── DispHTMLCommentElement.cs │ │ ├── DispHTMLCurrentStyle.cs │ │ ├── DispHTMLDDElement.cs │ │ ├── DispHTMLDListElement.cs │ │ ├── DispHTMLDOMAttribute.cs │ │ ├── DispHTMLDOMImplementation.cs │ │ ├── DispHTMLDOMTextNode.cs │ │ ├── DispHTMLDTElement.cs │ │ ├── DispHTMLDefaults.cs │ │ ├── DispHTMLDivElement.cs │ │ ├── DispHTMLDivPosition.cs │ │ ├── DispHTMLDocument.cs │ │ ├── DispHTMLDocumentCompatibleInfo.cs │ │ ├── DispHTMLDocumentCompatibleInfoCollection.cs │ │ ├── DispHTMLElementCollection.cs │ │ ├── DispHTMLEmbed.cs │ │ ├── DispHTMLFieldSetElement.cs │ │ ├── DispHTMLFontElement.cs │ │ ├── DispHTMLFormElement.cs │ │ ├── DispHTMLFrameBase.cs │ │ ├── DispHTMLFrameElement.cs │ │ ├── DispHTMLFrameSetSite.cs │ │ ├── DispHTMLGenericElement.cs │ │ ├── DispHTMLHRElement.cs │ │ ├── DispHTMLHeadElement.cs │ │ ├── DispHTMLHeaderElement.cs │ │ ├── DispHTMLHistory.cs │ │ ├── DispHTMLHtmlElement.cs │ │ ├── DispHTMLIFrame.cs │ │ ├── DispHTMLImg.cs │ │ ├── DispHTMLInputElement.cs │ │ ├── DispHTMLIsIndexElement.cs │ │ ├── DispHTMLLIElement.cs │ │ ├── DispHTMLLabelElement.cs │ │ ├── DispHTMLLegendElement.cs │ │ ├── DispHTMLLinkElement.cs │ │ ├── DispHTMLListElement.cs │ │ ├── DispHTMLLocation.cs │ │ ├── DispHTMLMapElement.cs │ │ ├── DispHTMLMarqueeElement.cs │ │ ├── DispHTMLMetaElement.cs │ │ ├── DispHTMLNamespace.cs │ │ ├── DispHTMLNamespaceCollection.cs │ │ ├── DispHTMLNavigator.cs │ │ ├── DispHTMLNextIdElement.cs │ │ ├── DispHTMLNoShowElement.cs │ │ ├── DispHTMLOListElement.cs │ │ ├── DispHTMLObjectElement.cs │ │ ├── DispHTMLOptionElement.cs │ │ ├── DispHTMLParaElement.cs │ │ ├── DispHTMLParamElement.cs │ │ ├── DispHTMLPhraseElement.cs │ │ ├── DispHTMLPopup.cs │ │ ├── DispHTMLRenderStyle.cs │ │ ├── DispHTMLRichtextElement.cs │ │ ├── DispHTMLRuleStyle.cs │ │ ├── DispHTMLScreen.cs │ │ ├── DispHTMLScriptElement.cs │ │ ├── DispHTMLSelectElement.cs │ │ ├── DispHTMLSpanElement.cs │ │ ├── DispHTMLSpanFlow.cs │ │ ├── DispHTMLStorage.cs │ │ ├── DispHTMLStyle.cs │ │ ├── DispHTMLStyleElement.cs │ │ ├── DispHTMLStyleSheet.cs │ │ ├── DispHTMLStyleSheetPage.cs │ │ ├── DispHTMLStyleSheetPagesCollection.cs │ │ ├── DispHTMLStyleSheetRule.cs │ │ ├── DispHTMLStyleSheetRulesCollection.cs │ │ ├── DispHTMLStyleSheetsCollection.cs │ │ ├── DispHTMLTable.cs │ │ ├── DispHTMLTableCaption.cs │ │ ├── DispHTMLTableCell.cs │ │ ├── DispHTMLTableCol.cs │ │ ├── DispHTMLTableRow.cs │ │ ├── DispHTMLTableSection.cs │ │ ├── DispHTMLTextAreaElement.cs │ │ ├── DispHTMLTextElement.cs │ │ ├── DispHTMLTitleElement.cs │ │ ├── DispHTMLUListElement.cs │ │ ├── DispHTMLUnknownElement.cs │ │ ├── DispHTMLUrnCollection.cs │ │ ├── DispHTMLWindow2.cs │ │ ├── DispHTMLWindowProxy.cs │ │ ├── DispHTMLWndOptionElement.cs │ │ ├── DispHTMLWndSelectElement.cs │ │ ├── DispHTMLXMLHttpRequest.cs │ │ ├── DispIHTMLInputButtonElement.cs │ │ ├── DispIHTMLInputFileElement.cs │ │ ├── DispIHTMLInputImage.cs │ │ ├── DispIHTMLInputTextElement.cs │ │ ├── DispIHTMLOptionButtonElement.cs │ │ ├── DispStaticNodeList.cs │ │ ├── DispXDomainRequest.cs │ │ ├── HTMLAnchorEvents2.cs │ │ ├── HTMLAreaEvents2.cs │ │ ├── HTMLButtonElementEvents2.cs │ │ ├── HTMLControlElementEvents2.cs │ │ ├── HTMLDocumentEvents2.cs │ │ ├── HTMLDocumentEvents3.cs │ │ ├── HTMLElementEvents2.cs │ │ ├── HTMLElementEvents3.cs │ │ ├── HTMLFormElementEvents2.cs │ │ ├── HTMLFrameSiteEvents.cs │ │ ├── HTMLFrameSiteEvents2.cs │ │ ├── HTMLImgEvents2.cs │ │ ├── HTMLInputFileElementEvents2.cs │ │ ├── HTMLInputImageEvents2.cs │ │ ├── HTMLInputTextElementEvents2.cs │ │ ├── HTMLLabelEvents2.cs │ │ ├── HTMLLinkElementEvents2.cs │ │ ├── HTMLMapEvents2.cs │ │ ├── HTMLMarqueeElementEvents2.cs │ │ ├── HTMLObjectElementEvents2.cs │ │ ├── HTMLOptionButtonElementEvents2.cs │ │ ├── HTMLScriptEvents2.cs │ │ ├── HTMLSelectElementEvents2.cs │ │ ├── HTMLStyleElementEvents2.cs │ │ ├── HTMLTableEvents2.cs │ │ ├── HTMLTextContainerEvents2.cs │ │ ├── HTMLWindowEvents2.cs │ │ ├── HTMLWindowEvents3.cs │ │ ├── IDocumentSelector.cs │ │ ├── IElementSelector.cs │ │ ├── IHTCAttachBehavior.cs │ │ ├── IHTCAttachBehavior2.cs │ │ ├── IHTCDefaultDispatch.cs │ │ ├── IHTCDescBehavior.cs │ │ ├── IHTCEventBehavior.cs │ │ ├── IHTCMethodBehavior.cs │ │ ├── IHTCPropertyBehavior.cs │ │ ├── IHTMLAnchorElement.cs │ │ ├── IHTMLAnchorElement2.cs │ │ ├── IHTMLAnchorElement3.cs │ │ ├── IHTMLAppBehavior.cs │ │ ├── IHTMLAppBehavior2.cs │ │ ├── IHTMLAppBehavior3.cs │ │ ├── IHTMLAreaElement.cs │ │ ├── IHTMLAreaElement2.cs │ │ ├── IHTMLAreasCollection.cs │ │ ├── IHTMLAreasCollection2.cs │ │ ├── IHTMLAreasCollection3.cs │ │ ├── IHTMLAreasCollection4.cs │ │ ├── IHTMLAttributeCollection.cs │ │ ├── IHTMLAttributeCollection2.cs │ │ ├── IHTMLAttributeCollection3.cs │ │ ├── IHTMLBGsound.cs │ │ ├── IHTMLBRElement.cs │ │ ├── IHTMLBaseElement.cs │ │ ├── IHTMLBaseElement2.cs │ │ ├── IHTMLBaseFontElement.cs │ │ ├── IHTMLBlockElement.cs │ │ ├── IHTMLBlockElement2.cs │ │ ├── IHTMLBlockElement3.cs │ │ ├── IHTMLBodyElement.cs │ │ ├── IHTMLBodyElement2.cs │ │ ├── IHTMLBodyElement3.cs │ │ ├── IHTMLBookmarkCollection.cs │ │ ├── IHTMLButtonElement.cs │ │ ├── IHTMLCommentElement.cs │ │ ├── IHTMLCommentElement2.cs │ │ ├── IHTMLControlElement.cs │ │ ├── IHTMLControlRange.cs │ │ ├── IHTMLControlRange2.cs │ │ ├── IHTMLCurrentStyle.cs │ │ ├── IHTMLCurrentStyle2.cs │ │ ├── IHTMLCurrentStyle3.cs │ │ ├── IHTMLCurrentStyle4.cs │ │ ├── IHTMLCurrentStyle5.cs │ │ ├── IHTMLDDElement.cs │ │ ├── IHTMLDListElement.cs │ │ ├── IHTMLDOMAttribute.cs │ │ ├── IHTMLDOMAttribute2.cs │ │ ├── IHTMLDOMAttribute3.cs │ │ ├── IHTMLDOMChildrenCollection.cs │ │ ├── IHTMLDOMConstructor.cs │ │ ├── IHTMLDOMConstructorCollection.cs │ │ ├── IHTMLDOMImplementation.cs │ │ ├── IHTMLDOMNode.cs │ │ ├── IHTMLDOMNode2.cs │ │ ├── IHTMLDOMTextNode.cs │ │ ├── IHTMLDOMTextNode2.cs │ │ ├── IHTMLDTElement.cs │ │ ├── IHTMLDataTransfer.cs │ │ ├── IHTMLDatabinding.cs │ │ ├── IHTMLDialog.cs │ │ ├── IHTMLDialog2.cs │ │ ├── IHTMLDialog3.cs │ │ ├── IHTMLDivElement.cs │ │ ├── IHTMLDivPosition.cs │ │ ├── IHTMLDocument.cs │ │ ├── IHTMLDocument2.cs │ │ ├── IHTMLDocument3.cs │ │ ├── IHTMLDocument4.cs │ │ ├── IHTMLDocument5.cs │ │ ├── IHTMLDocument6.cs │ │ ├── IHTMLDocumentCompatibleInfo.cs │ │ ├── IHTMLDocumentCompatibleInfoCollection.cs │ │ ├── IHTMLElement.cs │ │ ├── IHTMLElement2.cs │ │ ├── IHTMLElement3.cs │ │ ├── IHTMLElement4.cs │ │ ├── IHTMLElement5.cs │ │ ├── IHTMLElementCollection.cs │ │ ├── IHTMLElementCollection2.cs │ │ ├── IHTMLElementCollection3.cs │ │ ├── IHTMLElementCollection4.cs │ │ ├── IHTMLElementDefaults.cs │ │ ├── IHTMLEmbedElement.cs │ │ ├── IHTMLEmbedElement2.cs │ │ ├── IHTMLEventObj.cs │ │ ├── IHTMLEventObj2.cs │ │ ├── IHTMLEventObj3.cs │ │ ├── IHTMLEventObj4.cs │ │ ├── IHTMLEventObj5.cs │ │ ├── IHTMLFieldSetElement.cs │ │ ├── IHTMLFieldSetElement2.cs │ │ ├── IHTMLFiltersCollection.cs │ │ ├── IHTMLFontElement.cs │ │ ├── IHTMLFontNamesCollection.cs │ │ ├── IHTMLFontSizesCollection.cs │ │ ├── IHTMLFormElement.cs │ │ ├── IHTMLFormElement2.cs │ │ ├── IHTMLFormElement3.cs │ │ ├── IHTMLFormElement4.cs │ │ ├── IHTMLFrameBase.cs │ │ ├── IHTMLFrameBase2.cs │ │ ├── IHTMLFrameBase3.cs │ │ ├── IHTMLFrameElement.cs │ │ ├── IHTMLFrameElement2.cs │ │ ├── IHTMLFrameElement3.cs │ │ ├── IHTMLFrameSetElement.cs │ │ ├── IHTMLFrameSetElement2.cs │ │ ├── IHTMLFramesCollection2.cs │ │ ├── IHTMLGenericElement.cs │ │ ├── IHTMLHRElement.cs │ │ ├── IHTMLHeadElement.cs │ │ ├── IHTMLHeadElement2.cs │ │ ├── IHTMLHeaderElement.cs │ │ ├── IHTMLHtmlElement.cs │ │ ├── IHTMLIFrameElement.cs │ │ ├── IHTMLIFrameElement2.cs │ │ ├── IHTMLIFrameElement3.cs │ │ ├── IHTMLIPrintCollection.cs │ │ ├── IHTMLImageElementFactory.cs │ │ ├── IHTMLImgElement.cs │ │ ├── IHTMLImgElement2.cs │ │ ├── IHTMLImgElement3.cs │ │ ├── IHTMLInputButtonElement.cs │ │ ├── IHTMLInputElement.cs │ │ ├── IHTMLInputElement2.cs │ │ ├── IHTMLInputElement3.cs │ │ ├── IHTMLInputFileElement.cs │ │ ├── IHTMLInputHiddenElement.cs │ │ ├── IHTMLInputImage.cs │ │ ├── IHTMLInputTextElement.cs │ │ ├── IHTMLIsIndexElement.cs │ │ ├── IHTMLIsIndexElement2.cs │ │ ├── IHTMLLIElement.cs │ │ ├── IHTMLLabelElement.cs │ │ ├── IHTMLLabelElement2.cs │ │ ├── IHTMLLegendElement.cs │ │ ├── IHTMLLegendElement2.cs │ │ ├── IHTMLLinkElement.cs │ │ ├── IHTMLLinkElement2.cs │ │ ├── IHTMLLinkElement3.cs │ │ ├── IHTMLLinkElement4.cs │ │ ├── IHTMLListElement.cs │ │ ├── IHTMLListElement2.cs │ │ ├── IHTMLLocation.cs │ │ ├── IHTMLMapElement.cs │ │ ├── IHTMLMarqueeElement.cs │ │ ├── IHTMLMetaElement.cs │ │ ├── IHTMLMetaElement2.cs │ │ ├── IHTMLMetaElement3.cs │ │ ├── IHTMLMimeTypesCollection.cs │ │ ├── IHTMLModelessInit.cs │ │ ├── IHTMLNamespace.cs │ │ ├── IHTMLNamespaceCollection.cs │ │ ├── IHTMLNextIdElement.cs │ │ ├── IHTMLNoShowElement.cs │ │ ├── IHTMLOListElement.cs │ │ ├── IHTMLObjectElement.cs │ │ ├── IHTMLObjectElement2.cs │ │ ├── IHTMLObjectElement3.cs │ │ ├── IHTMLObjectElement4.cs │ │ ├── IHTMLOpsProfile.cs │ │ ├── IHTMLOptionButtonElement.cs │ │ ├── IHTMLOptionElement.cs │ │ ├── IHTMLOptionElement3.cs │ │ ├── IHTMLOptionElementFactory.cs │ │ ├── IHTMLOptionsHolder.cs │ │ ├── IHTMLParaElement.cs │ │ ├── IHTMLParamElement.cs │ │ ├── IHTMLParamElement2.cs │ │ ├── IHTMLPhraseElement.cs │ │ ├── IHTMLPhraseElement2.cs │ │ ├── IHTMLPhraseElement3.cs │ │ ├── IHTMLPluginsCollection.cs │ │ ├── IHTMLPopup.cs │ │ ├── IHTMLRect.cs │ │ ├── IHTMLRectCollection.cs │ │ ├── IHTMLRenderStyle.cs │ │ ├── IHTMLRuleStyle.cs │ │ ├── IHTMLRuleStyle2.cs │ │ ├── IHTMLRuleStyle3.cs │ │ ├── IHTMLRuleStyle4.cs │ │ ├── IHTMLRuleStyle5.cs │ │ ├── IHTMLRuleStyle6.cs │ │ ├── IHTMLScreen.cs │ │ ├── IHTMLScreen2.cs │ │ ├── IHTMLScreen3.cs │ │ ├── IHTMLScriptElement.cs │ │ ├── IHTMLScriptElement2.cs │ │ ├── IHTMLScriptElement3.cs │ │ ├── IHTMLSelectElement.cs │ │ ├── IHTMLSelectElement2.cs │ │ ├── IHTMLSelectElement4.cs │ │ ├── IHTMLSelectElement5.cs │ │ ├── IHTMLSelectionObject.cs │ │ ├── IHTMLSelectionObject2.cs │ │ ├── IHTMLSpanElement.cs │ │ ├── IHTMLSpanFlow.cs │ │ ├── IHTMLStorage.cs │ │ ├── IHTMLStyle.cs │ │ ├── IHTMLStyle2.cs │ │ ├── IHTMLStyle3.cs │ │ ├── IHTMLStyle4.cs │ │ ├── IHTMLStyle5.cs │ │ ├── IHTMLStyle6.cs │ │ ├── IHTMLStyleElement.cs │ │ ├── IHTMLStyleFontFace.cs │ │ ├── IHTMLStyleSheet.cs │ │ ├── IHTMLStyleSheet2.cs │ │ ├── IHTMLStyleSheet3.cs │ │ ├── IHTMLStyleSheetPage.cs │ │ ├── IHTMLStyleSheetPagesCollection.cs │ │ ├── IHTMLStyleSheetRule.cs │ │ ├── IHTMLStyleSheetRulesCollection.cs │ │ ├── IHTMLStyleSheetsCollection.cs │ │ ├── IHTMLSubmitData.cs │ │ ├── IHTMLTable.cs │ │ ├── IHTMLTable2.cs │ │ ├── IHTMLTable3.cs │ │ ├── IHTMLTableCaption.cs │ │ ├── IHTMLTableCell.cs │ │ ├── IHTMLTableCell2.cs │ │ ├── IHTMLTableCol.cs │ │ ├── IHTMLTableCol2.cs │ │ ├── IHTMLTableRow.cs │ │ ├── IHTMLTableRow2.cs │ │ ├── IHTMLTableRow3.cs │ │ ├── IHTMLTableRowMetrics.cs │ │ ├── IHTMLTableSection.cs │ │ ├── IHTMLTableSection2.cs │ │ ├── IHTMLTableSection3.cs │ │ ├── IHTMLTextAreaElement.cs │ │ ├── IHTMLTextContainer.cs │ │ ├── IHTMLTextElement.cs │ │ ├── IHTMLTextRangeMetrics.cs │ │ ├── IHTMLTextRangeMetrics2.cs │ │ ├── IHTMLTitleElement.cs │ │ ├── IHTMLTxtRange.cs │ │ ├── IHTMLTxtRangeCollection.cs │ │ ├── IHTMLUListElement.cs │ │ ├── IHTMLUniqueName.cs │ │ ├── IHTMLUnknownElement.cs │ │ ├── IHTMLUrnCollection.cs │ │ ├── IHTMLWindow2.cs │ │ ├── IHTMLWindow3.cs │ │ ├── IHTMLWindow4.cs │ │ ├── IHTMLWindow5.cs │ │ ├── IHTMLWindow6.cs │ │ ├── IHTMLXDomainRequest.cs │ │ ├── IHTMLXDomainRequestFactory.cs │ │ ├── IHTMLXMLHttpRequest.cs │ │ ├── IHTMLXMLHttpRequest2.cs │ │ ├── IHTMLXMLHttpRequestFactory.cs │ │ ├── IOmHistory.cs │ │ ├── IOmNavigator.cs │ │ ├── IWBScriptControl.cs │ │ └── IWebBridge.cs │ ├── Enums │ │ ├── _BEHAVIOR_EVENT.cs │ │ ├── _BEHAVIOR_EVENT_FLAGS.cs │ │ ├── _BEHAVIOR_LAYOUT_INFO.cs │ │ ├── _BEHAVIOR_LAYOUT_MODE.cs │ │ ├── _BEHAVIOR_RELATION.cs │ │ ├── _BEHAVIOR_RENDER_INFO.cs │ │ ├── _BoolValue.cs │ │ ├── _CARET_DIRECTION.cs │ │ ├── _COORD_SYSTEM.cs │ │ ├── _DISPLAY_BREAK.cs │ │ ├── _DISPLAY_GRAVITY.cs │ │ ├── _DISPLAY_MOVEUNIT.cs │ │ ├── _DomConstructor.cs │ │ ├── _ELEMENTDESCRIPTOR_FLAGS.cs │ │ ├── _ELEMENTNAMESPACE_FLAGS.cs │ │ ├── _ELEMENT_ADJACENCY.cs │ │ ├── _ELEMENT_CORNER.cs │ │ ├── _ELEMENT_TAG_ID.cs │ │ ├── _FINDTEXT_FLAGS.cs │ │ ├── _HTMLAppFlag.cs │ │ ├── _HTMLBorder.cs │ │ ├── _HTMLBorderStyle.cs │ │ ├── _HTMLCaptionFlag.cs │ │ ├── _HTMLDlgBorder.cs │ │ ├── _HTMLDlgCenter.cs │ │ ├── _HTMLDlgEdge.cs │ │ ├── _HTMLDlgFlag.cs │ │ ├── _HTMLMaximizeFlag.cs │ │ ├── _HTMLMinimizeFlag.cs │ │ ├── _HTMLSysMenuFlag.cs │ │ ├── _HTMLWindowState.cs │ │ ├── _HTML_PAINTER.cs │ │ ├── _HTML_PAINT_DRAW_FLAGS.cs │ │ ├── _HTML_PAINT_DRAW_INFO_FLAGS.cs │ │ ├── _HTML_PAINT_EVENT_FLAGS.cs │ │ ├── _HTML_PAINT_ZORDER.cs │ │ ├── _HT_OPTIONS.cs │ │ ├── _HT_RESULTS.cs │ │ ├── _LINE_DIRECTION.cs │ │ ├── _MARKUP_CONTEXT_TYPE.cs │ │ ├── _MOVEUNIT_ACTION.cs │ │ ├── _PARSE_FLAGS.cs │ │ ├── _POINTER_GRAVITY.cs │ │ ├── _SAVE_SEGMENTS_FLAGS.cs │ │ ├── _SECUREURLHOSTVALIDATE_FLAGS.cs │ │ ├── _SELECTION_TYPE.cs │ │ ├── _bodyScroll.cs │ │ ├── _frameScrolling.cs │ │ ├── _htmlAdjacency.cs │ │ ├── _htmlApplyLocation.cs │ │ ├── _htmlBlockAlign.cs │ │ ├── _htmlCaptionAlign.cs │ │ ├── _htmlCaptionVAlign.cs │ │ ├── _htmlCellAlign.cs │ │ ├── _htmlCellVAlign.cs │ │ ├── _htmlClear.cs │ │ ├── _htmlCompatMode.cs │ │ ├── _htmlComponent.cs │ │ ├── _htmlControlAlign.cs │ │ ├── _htmlDesignMode.cs │ │ ├── _htmlDir.cs │ │ ├── _htmlDirection.cs │ │ ├── _htmlDropEffect.cs │ │ ├── _htmlEditable.cs │ │ ├── _htmlEffectAllowed.cs │ │ ├── _htmlEncoding.cs │ │ ├── _htmlEndPoints.cs │ │ ├── _htmlFrame.cs │ │ ├── _htmlGlyphMode.cs │ │ ├── _htmlInput.cs │ │ ├── _htmlListType.cs │ │ ├── _htmlLoop.cs │ │ ├── _htmlMarqueeBehavior.cs │ │ ├── _htmlMarqueeDirection.cs │ │ ├── _htmlMethod.cs │ │ ├── _htmlPersistState.cs │ │ ├── _htmlReadyState.cs │ │ ├── _htmlRules.cs │ │ ├── _htmlSelectExFlag.cs │ │ ├── _htmlSelectType.cs │ │ ├── _htmlSelection.cs │ │ ├── _htmlStart.cs │ │ ├── _htmlTabIndex.cs │ │ ├── _htmlUnit.cs │ │ ├── _htmlWrap.cs │ │ ├── _htmlZOrder.cs │ │ ├── _mediaType.cs │ │ ├── _styleAccelerator.cs │ │ ├── _styleAuto.cs │ │ ├── _styleBackgroundAttachment.cs │ │ ├── _styleBackgroundPositionX.cs │ │ ├── _styleBackgroundPositionY.cs │ │ ├── _styleBackgroundRepeat.cs │ │ ├── _styleBidi.cs │ │ ├── _styleBlockProgression.cs │ │ ├── _styleBool.cs │ │ ├── _styleBorderCollapse.cs │ │ ├── _styleBorderStyle.cs │ │ ├── _styleBorderWidth.cs │ │ ├── _styleBoxSizing.cs │ │ ├── _styleCaptionSide.cs │ │ ├── _styleCursor.cs │ │ ├── _styleDataRepeat.cs │ │ ├── _styleDefaultTextSelection.cs │ │ ├── _styleDir.cs │ │ ├── _styleDisplay.cs │ │ ├── _styleEmptyCells.cs │ │ ├── _styleFontSize.cs │ │ ├── _styleFontStyle.cs │ │ ├── _styleFontVariant.cs │ │ ├── _styleFontWeight.cs │ │ ├── _styleImeMode.cs │ │ ├── _styleInterpolation.cs │ │ ├── _styleLayoutFlow.cs │ │ ├── _styleLayoutGridChar.cs │ │ ├── _styleLayoutGridLine.cs │ │ ├── _styleLayoutGridMode.cs │ │ ├── _styleLayoutGridType.cs │ │ ├── _styleLineBreak.cs │ │ ├── _styleListStylePosition.cs │ │ ├── _styleListStyleType.cs │ │ ├── _styleNone.cs │ │ ├── _styleNormal.cs │ │ ├── _styleOverflow.cs │ │ ├── _stylePageBreak.cs │ │ ├── _stylePageBreakInside.cs │ │ ├── _stylePosition.cs │ │ ├── _styleRubyAlign.cs │ │ ├── _styleRubyOverhang.cs │ │ ├── _styleRubyPosition.cs │ │ ├── _styleStyleFloat.cs │ │ ├── _styleTableLayout.cs │ │ ├── _styleTextAlignLast.cs │ │ ├── _styleTextDecoration.cs │ │ ├── _styleTextEffect.cs │ │ ├── _styleTextJustify.cs │ │ ├── _styleTextJustifyTrim.cs │ │ ├── _styleTextLineThroughStyle.cs │ │ ├── _styleTextOverflow.cs │ │ ├── _styleTextTransform.cs │ │ ├── _styleTextUnderlinePosition.cs │ │ ├── _styleTextUnderlineStyle.cs │ │ ├── _styleVerticalAlign.cs │ │ ├── _styleVisibility.cs │ │ ├── _styleWhiteSpace.cs │ │ ├── _styleWidowsOrphans.cs │ │ ├── _styleWordBreak.cs │ │ ├── _styleWordWrap.cs │ │ ├── _styleWritingMode.cs │ │ ├── _styleZIndex.cs │ │ └── _textDecoration.cs │ ├── EventInterfaces │ │ ├── DWebBridgeEvents.cs │ │ ├── HTMLAnchorEvents.cs │ │ ├── HTMLAreaEvents.cs │ │ ├── HTMLButtonElementEvents.cs │ │ ├── HTMLControlElementEvents.cs │ │ ├── HTMLDocumentEvents.cs │ │ ├── HTMLElementEvents.cs │ │ ├── HTMLFormElementEvents.cs │ │ ├── HTMLImgEvents.cs │ │ ├── HTMLInputFileElementEvents.cs │ │ ├── HTMLInputImageEvents.cs │ │ ├── HTMLInputTextElementEvents.cs │ │ ├── HTMLLabelEvents.cs │ │ ├── HTMLLinkElementEvents.cs │ │ ├── HTMLMapEvents.cs │ │ ├── HTMLMarqueeElementEvents.cs │ │ ├── HTMLNamespaceEvents.cs │ │ ├── HTMLObjectElementEvents.cs │ │ ├── HTMLOptionButtonElementEvents.cs │ │ ├── HTMLScriptEvents.cs │ │ ├── HTMLSelectElementEvents.cs │ │ ├── HTMLStyleElementEvents.cs │ │ ├── HTMLTableEvents.cs │ │ ├── HTMLTextContainerEvents.cs │ │ ├── HTMLWindowEvents.cs │ │ └── HTMLXMLHttpRequestEvents.cs │ ├── Interfaces │ │ ├── IActiveIMMApp.cs │ │ ├── IBlockFormats.cs │ │ ├── ICSSFilter.cs │ │ ├── ICSSFilterSite.cs │ │ ├── IDisplayPointer.cs │ │ ├── IDisplayServices.cs │ │ ├── IElementBehavior.cs │ │ ├── IElementBehaviorCategory.cs │ │ ├── IElementBehaviorFactory.cs │ │ ├── IElementBehaviorFocus.cs │ │ ├── IElementBehaviorLayout.cs │ │ ├── IElementBehaviorLayout2.cs │ │ ├── IElementBehaviorRender.cs │ │ ├── IElementBehaviorSite.cs │ │ ├── IElementBehaviorSiteCategory.cs │ │ ├── IElementBehaviorSiteLayout.cs │ │ ├── IElementBehaviorSiteLayout2.cs │ │ ├── IElementBehaviorSiteOM.cs │ │ ├── IElementBehaviorSiteOM2.cs │ │ ├── IElementBehaviorSiteRender.cs │ │ ├── IElementBehaviorSubmit.cs │ │ ├── IElementNamespace.cs │ │ ├── IElementNamespaceFactory.cs │ │ ├── IElementNamespaceFactory2.cs │ │ ├── IElementNamespaceFactoryCallback.cs │ │ ├── IElementNamespaceTable.cs │ │ ├── IElementSegment.cs │ │ ├── IEnumInputContext.cs │ │ ├── IEnumPrivacyRecords.cs │ │ ├── IEnumRegisterWordA.cs │ │ ├── IEnumRegisterWordW.cs │ │ ├── IEnumUnknown.cs │ │ ├── IFontNames.cs │ │ ├── IHTMLCaret.cs │ │ ├── IHTMLChangeLog.cs │ │ ├── IHTMLChangePlayback.cs │ │ ├── IHTMLChangeSink.cs │ │ ├── IHTMLComputedStyle.cs │ │ ├── IHTMLEditDesigner.cs │ │ ├── IHTMLEditHost.cs │ │ ├── IHTMLEditHost2.cs │ │ ├── IHTMLEditServices.cs │ │ ├── IHTMLEditServices2.cs │ │ ├── IHTMLElementRender.cs │ │ ├── IHTMLPaintSite.cs │ │ ├── IHTMLPainter.cs │ │ ├── IHTMLPainterEventInfo.cs │ │ ├── IHTMLPainterOverlay.cs │ │ ├── IHTMLSelectElementEx.cs │ │ ├── IHighlightRenderingServices.cs │ │ ├── IHighlightSegment.cs │ │ ├── IHostBehaviorInit.cs │ │ ├── IHtmlDlgSafeHelper.cs │ │ ├── IIMEServices.cs │ │ ├── ILineInfo.cs │ │ ├── IMarkupContainer.cs │ │ ├── IMarkupContainer2.cs │ │ ├── IMarkupPointer.cs │ │ ├── IMarkupPointer2.cs │ │ ├── IMarkupServices.cs │ │ ├── IMarkupServices2.cs │ │ ├── IMarkupTextFrags.cs │ │ ├── ISecureUrlHost.cs │ │ ├── ISegment.cs │ │ ├── ISegmentList.cs │ │ ├── ISegmentListIterator.cs │ │ ├── ISelectionServices.cs │ │ ├── ISelectionServicesListener.cs │ │ ├── ISequenceNumber.cs │ │ ├── IWPCBlockedUrls.cs │ │ └── IXMLGenericParse.cs │ ├── MSHTMLApi.csproj │ ├── Records │ │ ├── _FLAGGED_BYTE_BLOB.cs │ │ ├── _HTML_PAINTER_INFO.cs │ │ ├── _HTML_PAINT_DRAW_INFO.cs │ │ ├── _HTML_PAINT_XFORM.cs │ │ ├── _RemotableHandle.cs │ │ ├── __MIDL___MIDL_itf_mshtml_0001_0042_0001.cs │ │ ├── __MIDL___MIDL_itf_mshtml_0001_0042_0002.cs │ │ ├── __MIDL___MIDL_itf_mshtml_0001_0042_0003.cs │ │ ├── __MIDL___MIDL_itf_mshtml_0001_0042_0004.cs │ │ ├── __MIDL___MIDL_itf_mshtml_0001_0042_0005.cs │ │ ├── __MIDL___MIDL_itf_mshtml_0001_0042_0006.cs │ │ ├── __MIDL___MIDL_itf_mshtml_0001_0042_0007.cs │ │ ├── __MIDL___MIDL_itf_mshtml_0001_0042_0008.cs │ │ ├── __MIDL___MIDL_itf_mshtml_0001_0042_0009.cs │ │ ├── __MIDL___MIDL_itf_mshtml_0001_0042_0010.cs │ │ ├── __MIDL___MIDL_itf_mshtml_0001_0042_0011.cs │ │ ├── _userBITMAP.cs │ │ ├── _userHBITMAP.cs │ │ ├── _userHGLOBAL.cs │ │ ├── tagLOGFONTW.cs │ │ ├── tagPOINT.cs │ │ ├── tagRECT.cs │ │ ├── tagSIZE.cs │ │ ├── wireHBITMAP.cs │ │ ├── wireHDC.cs │ │ ├── wireHGLOBAL.cs │ │ ├── wireHRGN.cs │ │ └── wireHWND.cs │ └── Utils │ │ └── ProjectInfo.cs ├── MSProject │ ├── AssemblyInfo.cs │ ├── Classes │ │ ├── Application.cs │ │ └── Project.cs │ ├── DispatchInterfaces │ │ ├── ActualStartDrivers.cs │ │ ├── Assignment.cs │ │ ├── Assignments.cs │ │ ├── Availabilities.cs │ │ ├── Availability.cs │ │ ├── Calendar.cs │ │ ├── CalendarDrivers.cs │ │ ├── Calendars.cs │ │ ├── Cell.cs │ │ ├── Chart.cs │ │ ├── ChildDrivers.cs │ │ ├── CodeMask.cs │ │ ├── CodeMaskLevel.cs │ │ ├── CostRateTable.cs │ │ ├── CostRateTables.cs │ │ ├── Day.cs │ │ ├── Days.cs │ │ ├── EventInfo.cs │ │ ├── Exception.cs │ │ ├── Exceptions.cs │ │ ├── Filter.cs │ │ ├── Filters.cs │ │ ├── Group.cs │ │ ├── Group2.cs │ │ ├── GroupCriteria.cs │ │ ├── GroupCriteria2.cs │ │ ├── GroupCriterion.cs │ │ ├── GroupCriterion2.cs │ │ ├── Groups.cs │ │ ├── Groups2.cs │ │ ├── List.cs │ │ ├── LookupTable.cs │ │ ├── LookupTableEntry.cs │ │ ├── Month.cs │ │ ├── Months.cs │ │ ├── OutlineCode.cs │ │ ├── OutlineCodes.cs │ │ ├── OverAllocatedAssignments.cs │ │ ├── Pane.cs │ │ ├── PayRate.cs │ │ ├── PayRates.cs │ │ ├── Period.cs │ │ ├── PredecessorDrivers.cs │ │ ├── Profile.cs │ │ ├── Profiles.cs │ │ ├── Projects.cs │ │ ├── Report.cs │ │ ├── ReportTable.cs │ │ ├── ReportTemplate.cs │ │ ├── ReportTemplates.cs │ │ ├── Reports.cs │ │ ├── Resource.cs │ │ ├── ResourceGroups.cs │ │ ├── ResourceGroups2.cs │ │ ├── Resources.cs │ │ ├── Selection.cs │ │ ├── Shape.cs │ │ ├── ShapeRange.cs │ │ ├── Shapes.cs │ │ ├── Shift.cs │ │ ├── SplitPart.cs │ │ ├── SplitParts.cs │ │ ├── StartDriver.cs │ │ ├── Subproject.cs │ │ ├── Subprojects.cs │ │ ├── Table.cs │ │ ├── TableField.cs │ │ ├── TableFields.cs │ │ ├── Tables.cs │ │ ├── Task.cs │ │ ├── TaskDependencies.cs │ │ ├── TaskDependency.cs │ │ ├── TaskGroups.cs │ │ ├── TaskGroups2.cs │ │ ├── Tasks.cs │ │ ├── TimeScaleValue.cs │ │ ├── TimeScaleValues.cs │ │ ├── View.cs │ │ ├── ViewCombination.cs │ │ ├── ViewSingle.cs │ │ ├── Views.cs │ │ ├── ViewsCombination.cs │ │ ├── ViewsSingle.cs │ │ ├── WeekDay.cs │ │ ├── WeekDays.cs │ │ ├── Window.cs │ │ ├── Windows.cs │ │ ├── Windows2.cs │ │ ├── WorkWeek.cs │ │ ├── WorkWeekDay.cs │ │ ├── WorkWeekDays.cs │ │ ├── WorkWeeks.cs │ │ ├── Year.cs │ │ ├── Years.cs │ │ ├── _EProjectApp.cs │ │ ├── _IProjectDoc.cs │ │ └── _MSProject.cs │ ├── Enums │ │ ├── PJTaskOutlineShowLevel.cs │ │ ├── PjAccountType.cs │ │ ├── PjAccrueAt.cs │ │ ├── PjAlign.cs │ │ ├── PjAlignment.cs │ │ ├── PjAssignResourcesListFields.cs │ │ ├── PjAssignmentField.cs │ │ ├── PjAssignmentReplanAction.cs │ │ ├── PjAssignmentTimescaledData.cs │ │ ├── PjAssignmentUnits.cs │ │ ├── PjAuthentication.cs │ │ ├── PjAutoFilterType.cs │ │ ├── PjAutomaticSaveOptions.cs │ │ ├── PjBackgroundPattern.cs │ │ ├── PjBarEndShape.cs │ │ ├── PjBarItem.cs │ │ ├── PjBarShape.cs │ │ ├── PjBarSize.cs │ │ ├── PjBarType.cs │ │ ├── PjBaselines.cs │ │ ├── PjBookingTypes.cs │ │ ├── PjBorder.cs │ │ ├── PjBoxSet.cs │ │ ├── PjBoxShape.cs │ │ ├── PjBoxStyle.cs │ │ ├── PjCacheJobState.cs │ │ ├── PjCalculation.cs │ │ ├── PjCalendarBarType.cs │ │ ├── PjCalendarDateLabel.cs │ │ ├── PjCalendarShading.cs │ │ ├── PjCalendarType.cs │ │ ├── PjCell.cs │ │ ├── PjCheckOutType.cs │ │ ├── PjColor.cs │ │ ├── PjCommitmentTaskLinkType.cs │ │ ├── PjCompareVersionColumns.cs │ │ ├── PjCompareVersionItems.cs │ │ ├── PjComparison.cs │ │ ├── PjConstraint.cs │ │ ├── PjCopyPictureFor.cs │ │ ├── PjCopyPictureRows.cs │ │ ├── PjCopyPictureScaleOption.cs │ │ ├── PjCostRateTable.cs │ │ ├── PjCreatePublisher.cs │ │ ├── PjCriteriaList.cs │ │ ├── PjCustomField.cs │ │ ├── PjCustomFieldAttribute.cs │ │ ├── PjCustomFieldType.cs │ │ ├── PjCustomOutlineCodeSequence.cs │ │ ├── PjCustomizeMailAction.cs │ │ ├── PjDataCategories.cs │ │ ├── PjDataTemplate.cs │ │ ├── PjDateFormat.cs │ │ ├── PjDateLabel.cs │ │ ├── PjDateOrder.cs │ │ ├── PjDayLabel.cs │ │ ├── PjDialog.cs │ │ ├── PjDocExportType.cs │ │ ├── PjEarnedValueMethod.cs │ │ ├── PjEditionType.cs │ │ ├── PjEditionUpdate.cs │ │ ├── PjEnableCancelKey.cs │ │ ├── PjExceptionItem.cs │ │ ├── PjExceptionPosition.cs │ │ ├── PjExceptionType.cs │ │ ├── PjField.cs │ │ ├── PjFieldType.cs │ │ ├── PjFieldTypes.cs │ │ ├── PjFileFormat.cs │ │ ├── PjFillPattern.cs │ │ ├── PjFilterViewType.cs │ │ ├── PjFormatUnit.cs │ │ ├── PjGanttBarLink.cs │ │ ├── PjGridline.cs │ │ ├── PjGroupOn.cs │ │ ├── PjIMEMode.cs │ │ ├── PjImportMethods.cs │ │ ├── PjIndicator.cs │ │ ├── PjInformationTab.cs │ │ ├── PjIsCommandEnabled.cs │ │ ├── PjItemType.cs │ │ ├── PjJobType.cs │ │ ├── PjLayoutMode.cs │ │ ├── PjLayoutScheme.cs │ │ ├── PjLegacyFileFormats.cs │ │ ├── PjLegend.cs │ │ ├── PjLevelOrder.cs │ │ ├── PjLevelPeriodBasis.cs │ │ ├── PjLevelSelectedOption.cs │ │ ├── PjLineType.cs │ │ ├── PjLinkColorMode.cs │ │ ├── PjLinkStyle.cs │ │ ├── PjListOrder.cs │ │ ├── PjLoginType.cs │ │ ├── PjMSApplication.cs │ │ ├── PjMailField.cs │ │ ├── PjMailSystem.cs │ │ ├── PjMeasurementUnits.cs │ │ ├── PjMergeType.cs │ │ ├── PjMessageType.cs │ │ ├── PjMonth.cs │ │ ├── PjMonthLabel.cs │ │ ├── PjNewTasksStartOnDate.cs │ │ ├── PjNonWorkingPlacement.cs │ │ ├── PjOldConstants.cs │ │ ├── PjOptionsSecurityTab.cs │ │ ├── PjOrganizer.cs │ │ ├── PjOverallocationType.cs │ │ ├── PjPERTBoxSize.cs │ │ ├── PjPERTBoxStyle.cs │ │ ├── PjPERTField.cs │ │ ├── PjPageSetupCalendarItem.cs │ │ ├── PjPaperSize.cs │ │ ├── PjPasteSpecialType.cs │ │ ├── PjPhoneticType.cs │ │ ├── PjPlacement.cs │ │ ├── PjPoolAction.cs │ │ ├── PjPoolOpen.cs │ │ ├── PjPriority.cs │ │ ├── PjProfileConnectionState.cs │ │ ├── PjProfileType.cs │ │ ├── PjProjectServerTrackingMethod.cs │ │ ├── PjProjectType.cs │ │ ├── PjProjectUpdate.cs │ │ ├── PjPublishAction.cs │ │ ├── PjPublishInformationOnSave.cs │ │ ├── PjPublishScope.cs │ │ ├── PjRecalcDriverType.cs │ │ ├── PjReportLayoutTemplateId.cs │ │ ├── PjResAssignOperation.cs │ │ ├── PjResSubstitutionPoolOption.cs │ │ ├── PjResourceGraphPattern.cs │ │ ├── PjResourceGraphStyle.cs │ │ ├── PjResourceRequestType.cs │ │ ├── PjResourceTimescaledData.cs │ │ ├── PjResourceTypes.cs │ │ ├── PjRowColSize.cs │ │ ├── PjSaveBaselineFrom.cs │ │ ├── PjSaveBaselineTo.cs │ │ ├── PjSaveType.cs │ │ ├── PjScheduleProjectFrom.cs │ │ ├── PjServerPage.cs │ │ ├── PjServerVersionInfo.cs │ │ ├── PjShape.cs │ │ ├── PjSpellingField.cs │ │ ├── PjStatusType.cs │ │ ├── PjSubscribeAction.cs │ │ ├── PjSubscribeFormat.cs │ │ ├── PjSummaryCalc.cs │ │ ├── PjTaskFixedType.cs │ │ ├── PjTaskLinkType.cs │ │ ├── PjTaskTimescaledData.cs │ │ ├── PjTaskWarnings.cs │ │ ├── PjTeamPlannerStyle.cs │ │ ├── PjTeamStatusCompletedWork.cs │ │ ├── PjTextFileOrigin.cs │ │ ├── PjTextItem.cs │ │ ├── PjThemeElement.cs │ │ ├── PjTimelineInsertTaskType.cs │ │ ├── PjTimelineShowHide.cs │ │ ├── PjTimescaleUnit.cs │ │ ├── PjTimescaledData.cs │ │ ├── PjToolbarAction.cs │ │ ├── PjUnit.cs │ │ ├── PjValueListItem.cs │ │ ├── PjVerticalAlignment.cs │ │ ├── PjViewScreen.cs │ │ ├── PjViewType.cs │ │ ├── PjVisualReportsCubeType.cs │ │ ├── PjVisualReportsDataLevel.cs │ │ ├── PjVisualReportsTab.cs │ │ ├── PjVisualReportsTemplateType.cs │ │ ├── PjWBSSequence.cs │ │ ├── PjWeekLabel.cs │ │ ├── PjWeekday.cs │ │ ├── PjWindowState.cs │ │ ├── PjWorkContourType.cs │ │ ├── PjWorkgroupMessages.cs │ │ └── PjYesNoAutomatic.cs │ ├── EventInterfaces │ │ ├── _EProjectApp2.cs │ │ └── _EProjectDoc.cs │ ├── MSProjectApi.csproj │ ├── Modules │ │ └── Global.cs │ ├── Tools │ │ ├── COMAddin.cs │ │ ├── ITaskPane.cs │ │ └── Utils │ │ │ └── CommonUtils.cs │ └── Utils │ │ └── ProjectInfo.cs ├── NetOffice.sln ├── NetOffice │ ├── Attributes │ │ ├── CustomEnumeratorAttribute.cs │ │ ├── CustomMethodAttribute.cs │ │ ├── EntityTypeAttribute.cs │ │ ├── NetOfficeAssemblyAttribute.cs │ │ └── SupportByVersionAttribute.cs │ ├── COMObject.cs │ ├── COMObjectExpandableObjectConverter.cs │ ├── CacheOptions.cs │ ├── Core.cs │ ├── CurrentAppDomain.cs │ ├── DebugConsole.cs │ ├── DebugConsoleMode.cs │ ├── DependentAssembly.cs │ ├── EntityNotSupportedException.cs │ ├── ExceptionMessageHandling.cs │ ├── Factory.cs │ ├── Interfaces │ │ ├── IEventBinding.cs │ │ └── IFactoryInfo.cs │ ├── Invoker.cs │ ├── KeyTokens.txt │ ├── NamedPipes │ │ ├── ClientPipeConnection.cs │ │ ├── DebugConsole.cs │ │ ├── InterProcessConnectionState.cs │ │ ├── NamedPipeNative.cs │ │ ├── NamedPipeWrapper.cs │ │ ├── NetOfficeException.cs │ │ ├── PipeClient.cs │ │ ├── PipeConnection.cs │ │ └── PipeHandle.cs │ ├── NetOffice.csproj │ ├── NetOfficeException.cs │ ├── OnDisposeEventHandler.cs │ ├── PerformanceTrace.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ └── Resources.resx │ ├── RetryMessageFilter.cs │ ├── RunningObjectTable.cs │ ├── Settings.cs │ ├── SharedOutputMode.cs │ ├── SinkHelper.cs │ ├── SupportEntityType.cs │ ├── Tools │ │ ├── AttributeHelper.cs │ │ ├── COMAddinAttribute.cs │ │ ├── COMAddinBase.cs │ │ ├── COMAddinEventHandler.cs │ │ ├── CustomPaneAttribute.cs │ │ ├── CustomUIAttribute.cs │ │ ├── ErrorHandlerAttribute.cs │ │ ├── ErrorHandlerFunctionAttribute.cs │ │ ├── ErrorMethodKind.cs │ │ ├── IDTExtensibility2.cs │ │ ├── IErrorHandler.cs │ │ ├── RegisterErrorHandlerAttribute.cs │ │ ├── RegisterFunctionAttribute.cs │ │ ├── RegistryLocationAttribute.cs │ │ ├── TweakAttribute.cs │ │ ├── Tweaks.cs │ │ ├── UnRegisterFunctionAttribute.cs │ │ └── WndUtils │ │ │ ├── ExcelApplicationWindow.cs │ │ │ └── WindowEnumerator.cs │ ├── Utils.cs │ └── app.config ├── OWC10 │ ├── AssemblyInfo.cs │ ├── Classes │ │ ├── ChartSpace.cs │ │ ├── DataSourceControl.cs │ │ ├── FieldListControl.cs │ │ ├── NumberFormat.cs │ │ ├── OfflineInfo.cs │ │ ├── PivotTable.cs │ │ ├── Range.cs │ │ ├── RecordNavigationControl.cs │ │ └── Spreadsheet.cs │ ├── DispatchInterfaces │ │ ├── ActiveObject.cs │ │ ├── AllGroupingDefs.cs │ │ ├── AllPageFields.cs │ │ ├── AutoFilter.cs │ │ ├── AutoFitObject.cs │ │ ├── Border.cs │ │ ├── Borders.cs │ │ ├── ByRef.cs │ │ ├── ChAxes.cs │ │ ├── ChAxis.cs │ │ ├── ChBorder.cs │ │ ├── ChCategoryLabel.cs │ │ ├── ChCategoryLabels.cs │ │ ├── ChChart.cs │ │ ├── ChChartDraw.cs │ │ ├── ChChartField.cs │ │ ├── ChChartFields.cs │ │ ├── ChChartSpace.cs │ │ ├── ChCharts.cs │ │ ├── ChDataLabel.cs │ │ ├── ChDataLabels.cs │ │ ├── ChDataLabelsCollection.cs │ │ ├── ChDropZone.cs │ │ ├── ChErrorBars.cs │ │ ├── ChErrorBarsCollection.cs │ │ ├── ChFont.cs │ │ ├── ChFormatMap.cs │ │ ├── ChGridlines.cs │ │ ├── ChInterior.cs │ │ ├── ChLegend.cs │ │ ├── ChLegendEntries.cs │ │ ├── ChLegendEntry.cs │ │ ├── ChLine.cs │ │ ├── ChMarker.cs │ │ ├── ChPlotArea.cs │ │ ├── ChPoint.cs │ │ ├── ChPoints.cs │ │ ├── ChScaling.cs │ │ ├── ChSegment.cs │ │ ├── ChSegmentBoundary.cs │ │ ├── ChSegments.cs │ │ ├── ChSeries.cs │ │ ├── ChSeriesCollection.cs │ │ ├── ChSurface.cs │ │ ├── ChTitle.cs │ │ ├── ChTrendline.cs │ │ ├── ChTrendlines.cs │ │ ├── ChUserDefinedSelection.cs │ │ ├── Coordinate.cs │ │ ├── Criteria.cs │ │ ├── DSCEventInfo.cs │ │ ├── DataPage.cs │ │ ├── DataPages.cs │ │ ├── DropSource.cs │ │ ├── DropTarget.cs │ │ ├── EditableObject.cs │ │ ├── ElementExtension.cs │ │ ├── ElementExtensions.cs │ │ ├── FieldList.cs │ │ ├── FieldListDragData.cs │ │ ├── FieldListDragDataList.cs │ │ ├── FieldListHierarchy.cs │ │ ├── FieldListNode.cs │ │ ├── FieldListType.cs │ │ ├── Filter.cs │ │ ├── Filters.cs │ │ ├── Font.cs │ │ ├── GroupLevel.cs │ │ ├── GroupLevels.cs │ │ ├── GroupingDef.cs │ │ ├── GroupingDefs.cs │ │ ├── Heading.cs │ │ ├── Headings.cs │ │ ├── Hyperlink.cs │ │ ├── IAddinClient.cs │ │ ├── IAddinHost.cs │ │ ├── IDARef.cs │ │ ├── IDataSourceControl.cs │ │ ├── INavigationControl.cs │ │ ├── IOMEvent.cs │ │ ├── IOleCommandTargetArgument.cs │ │ ├── IPivotControl.cs │ │ ├── IPivotCopy.cs │ │ ├── ISpreadsheet.cs │ │ ├── IXRangeEnum.cs │ │ ├── InplaceObject.cs │ │ ├── Interior.cs │ │ ├── LookupRelationships.cs │ │ ├── LookupSchemaRelationships.cs │ │ ├── Moniker.cs │ │ ├── MouseTarget.cs │ │ ├── MutualExpando.cs │ │ ├── Name.cs │ │ ├── Names.cs │ │ ├── OCCommand.cs │ │ ├── OCCommands.cs │ │ ├── OWCLanguageSettings.cs │ │ ├── PageField.cs │ │ ├── PageFields.cs │ │ ├── PageRelatedField.cs │ │ ├── PageRelatedFields.cs │ │ ├── PageRelationship.cs │ │ ├── PageRowsource.cs │ │ ├── PageRowsources.cs │ │ ├── Pane.cs │ │ ├── Panes.cs │ │ ├── ParameterValue.cs │ │ ├── ParameterValues.cs │ │ ├── PivotAggregate.cs │ │ ├── PivotAggregates.cs │ │ ├── PivotAxis.cs │ │ ├── PivotAxisMember.cs │ │ ├── PivotAxisMembers.cs │ │ ├── PivotCell.cs │ │ ├── PivotClassFactory.cs │ │ ├── PivotColumnMember.cs │ │ ├── PivotColumnMembers.cs │ │ ├── PivotData.cs │ │ ├── PivotDataAxis.cs │ │ ├── PivotDetailCell.cs │ │ ├── PivotDetailRange.cs │ │ ├── PivotField.cs │ │ ├── PivotFieldSet.cs │ │ ├── PivotFieldSets.cs │ │ ├── PivotFields.cs │ │ ├── PivotFilterAxis.cs │ │ ├── PivotFilterUpdate.cs │ │ ├── PivotFont.cs │ │ ├── PivotGroupAxis.cs │ │ ├── PivotHyperlink.cs │ │ ├── PivotLabel.cs │ │ ├── PivotMember.cs │ │ ├── PivotMemberProperties.cs │ │ ├── PivotMemberProperty.cs │ │ ├── PivotMembers.cs │ │ ├── PivotPageMember.cs │ │ ├── PivotPageMembers.cs │ │ ├── PivotRange.cs │ │ ├── PivotResultAxis.cs │ │ ├── PivotResultColumnAxis.cs │ │ ├── PivotResultDataAxis.cs │ │ ├── PivotResultField.cs │ │ ├── PivotResultFilterAxis.cs │ │ ├── PivotResultGroupAxis.cs │ │ ├── PivotResultGroupField.cs │ │ ├── PivotResultGroupFields.cs │ │ ├── PivotResultLabel.cs │ │ ├── PivotResultMemberProperties.cs │ │ ├── PivotResultMemberProperty.cs │ │ ├── PivotResultPageAxis.cs │ │ ├── PivotResultRowAxis.cs │ │ ├── PivotRowMember.cs │ │ ├── PivotRowMembers.cs │ │ ├── PivotTotal.cs │ │ ├── PivotTotals.cs │ │ ├── PivotView.cs │ │ ├── PopupMenu.cs │ │ ├── PropertyNotify.cs │ │ ├── Protection.cs │ │ ├── RecordsetDef.cs │ │ ├── RecordsetDefs.cs │ │ ├── SchemaDiagram.cs │ │ ├── SchemaDiagrams.cs │ │ ├── SchemaField.cs │ │ ├── SchemaFields.cs │ │ ├── SchemaParameter.cs │ │ ├── SchemaParameters.cs │ │ ├── SchemaProperties.cs │ │ ├── SchemaProperty.cs │ │ ├── SchemaRelatedField.cs │ │ ├── SchemaRelatedFields.cs │ │ ├── SchemaRelationship.cs │ │ ├── SchemaRelationships.cs │ │ ├── SchemaRowsource.cs │ │ ├── SchemaRowsources.cs │ │ ├── Section.cs │ │ ├── SelectionHighlight.cs │ │ ├── Sheets.cs │ │ ├── SublistRelationships.cs │ │ ├── SublistSchemaRelationships.cs │ │ ├── TextFormat.cs │ │ ├── TipProvider.cs │ │ ├── TitleBar.cs │ │ ├── ViewObject.cs │ │ ├── ViewSurface.cs │ │ ├── Window.cs │ │ ├── Windows.cs │ │ ├── Workbook.cs │ │ ├── Workbooks.cs │ │ ├── Worksheet.cs │ │ ├── Worksheets.cs │ │ ├── _NumberFormat.cs │ │ └── _Range.cs │ ├── Enums │ │ ├── AddinClientTypeEnum.cs │ │ ├── Chart3DSurfaceEnum.cs │ │ ├── ChartAxisCrossesEnum.cs │ │ ├── ChartAxisGroupingEnum.cs │ │ ├── ChartAxisPositionEnum.cs │ │ ├── ChartAxisTypeEnum.cs │ │ ├── ChartAxisUnitTypeEnum.cs │ │ ├── ChartBoundaryValueTypeEnum.cs │ │ ├── ChartChartLayoutEnum.cs │ │ ├── ChartChartTypeEnum.cs │ │ ├── ChartColorIndexEnum.cs │ │ ├── ChartCommandIdEnum.cs │ │ ├── ChartDataGroupingFunctionEnum.cs │ │ ├── ChartDataLabelPositionEnum.cs │ │ ├── ChartDataSourceTypeEnum.cs │ │ ├── ChartDimensionsEnum.cs │ │ ├── ChartDrawModesEnum.cs │ │ ├── ChartDropZonesEnum.cs │ │ ├── ChartEndStyleEnum.cs │ │ ├── ChartErrorBarCustomValuesEnum.cs │ │ ├── ChartErrorBarDirectionEnum.cs │ │ ├── ChartErrorBarIncludeEnum.cs │ │ ├── ChartErrorBarTypeEnum.cs │ │ ├── ChartFillStyleEnum.cs │ │ ├── ChartFillTypeEnum.cs │ │ ├── ChartGradientStyleEnum.cs │ │ ├── ChartGradientVariantEnum.cs │ │ ├── ChartGroupingTotalFunctionEnum.cs │ │ ├── ChartLabelOrientationEnum.cs │ │ ├── ChartLegendPositionEnum.cs │ │ ├── ChartLineDashStyleEnum.cs │ │ ├── ChartLineMiterEnum.cs │ │ ├── ChartMarkerStyleEnum.cs │ │ ├── ChartPatternTypeEnum.cs │ │ ├── ChartPivotDataReferenceEnum.cs │ │ ├── ChartPlotAggregatesEnum.cs │ │ ├── ChartPresetGradientTypeEnum.cs │ │ ├── ChartPresetTextureEnum.cs │ │ ├── ChartProjectionModeEnum.cs │ │ ├── ChartScaleOrientationEnum.cs │ │ ├── ChartScaleTypeEnum.cs │ │ ├── ChartSelectionMarksEnum.cs │ │ ├── ChartSelectionsEnum.cs │ │ ├── ChartSeriesByEnum.cs │ │ ├── ChartSizeRepresentsEnum.cs │ │ ├── ChartSpecialDataSourcesEnum.cs │ │ ├── ChartTextureFormatEnum.cs │ │ ├── ChartTexturePlacementEnum.cs │ │ ├── ChartTickMarkEnum.cs │ │ ├── ChartTitlePositionEnum.cs │ │ ├── ChartTrendlineTypeEnum.cs │ │ ├── DaAttrEnum.cs │ │ ├── DataPageDesignerFlags.cs │ │ ├── DefaultControlTypeEnum.cs │ │ ├── DscAdviseTypeEnum.cs │ │ ├── DscDisplayAlert.cs │ │ ├── DscDropLocationEnum.cs │ │ ├── DscDropTypeEnum.cs │ │ ├── DscEncodingEnum.cs │ │ ├── DscFetchTypeEnum.cs │ │ ├── DscFieldTypeEnum.cs │ │ ├── DscGroupOnEnum.cs │ │ ├── DscHyperlinkPartEnum.cs │ │ ├── DscJoinTypeEnum.cs │ │ ├── DscLocationEnum.cs │ │ ├── DscObjectTypeEnum.cs │ │ ├── DscOfflineTypeEnum.cs │ │ ├── DscPageRelTypeEnum.cs │ │ ├── DscRecordsetTypeEnum.cs │ │ ├── DscRowsourceTypeEnum.cs │ │ ├── DscSaveAsEnum.cs │ │ ├── DscStatusEnum.cs │ │ ├── DscTotalTypeEnum.cs │ │ ├── DscXMLLocationEnum.cs │ │ ├── ExpandBitmapTypeEnum.cs │ │ ├── ExportableConnectStringEnum.cs │ │ ├── FieldListObjectTypeEnum.cs │ │ ├── FieldListRelationshipTypeEnum.cs │ │ ├── FieldListSelectRestriction.cs │ │ ├── LineStyleEnum.cs │ │ ├── LineWeightEnum.cs │ │ ├── MsoAppLanguageID.cs │ │ ├── MsoLanguageID.cs │ │ ├── NavButtonEnum.cs │ │ ├── NotificationType.cs │ │ ├── OCCommandId.cs │ │ ├── PivotArrowModeEnum.cs │ │ ├── PivotCaretPositionEnum.cs │ │ ├── PivotCommandId.cs │ │ ├── PivotDataReasonEnum.cs │ │ ├── PivotEditModeEnum.cs │ │ ├── PivotExportActionEnum.cs │ │ ├── PivotFieldFilterFunctionEnum.cs │ │ ├── PivotFieldGroupOnEnum.cs │ │ ├── PivotFieldSetAllIncludeExcludeEnum.cs │ │ ├── PivotFieldSetOrientationEnum.cs │ │ ├── PivotFieldSetTypeEnum.cs │ │ ├── PivotFieldSortDirectionEnum.cs │ │ ├── PivotFieldTypeEnum.cs │ │ ├── PivotFilterUpdateMemberStateEnum.cs │ │ ├── PivotHAlignmentEnum.cs │ │ ├── PivotMemberCustomGroupTypeEnum.cs │ │ ├── PivotMemberFindFormatEnum.cs │ │ ├── PivotMemberPropertyDisplayEnum.cs │ │ ├── PivotMembersCompareByEnum.cs │ │ ├── PivotScrollTypeEnum.cs │ │ ├── PivotShowAsEnum.cs │ │ ├── PivotTableExpandEnum.cs │ │ ├── PivotTableMemberExpandEnum.cs │ │ ├── PivotTableReasonEnum.cs │ │ ├── PivotTotalFunctionEnum.cs │ │ ├── PivotTotalTypeEnum.cs │ │ ├── PivotViewReasonEnum.cs │ │ ├── PivotViewTotalOrientationEnum.cs │ │ ├── ProviderType.cs │ │ ├── RefreshType.cs │ │ ├── SectTypeEnum.cs │ │ ├── SheetCommandEnum.cs │ │ ├── SheetExportActionEnum.cs │ │ ├── SheetExportFormat.cs │ │ ├── SheetFilterFunction.cs │ │ ├── SpreadSheetCommandId.cs │ │ ├── SynchronizationStatus.cs │ │ ├── TipTypeEnum.cs │ │ ├── UnderlineStyleEnum.cs │ │ ├── XlApplicationInternational.cs │ │ ├── XlBorderWeight.cs │ │ ├── XlBordersIndex.cs │ │ ├── XlCalculation.cs │ │ ├── XlColorIndex.cs │ │ ├── XlConstants.cs │ │ ├── XlDeleteShiftDirection.cs │ │ ├── XlDirection.cs │ │ ├── XlFindLookIn.cs │ │ ├── XlHAlign.cs │ │ ├── XlInsertShiftDirection.cs │ │ ├── XlLineStyle.cs │ │ ├── XlLookAt.cs │ │ ├── XlOrientation.cs │ │ ├── XlRangeValueType.cs │ │ ├── XlReadingOrder.cs │ │ ├── XlReferenceStyle.cs │ │ ├── XlSearchDirection.cs │ │ ├── XlSearchOrder.cs │ │ ├── XlSheetType.cs │ │ ├── XlSheetVisibility.cs │ │ ├── XlSortOrder.cs │ │ ├── XlUnderlineStyle.cs │ │ ├── XlVAlign.cs │ │ ├── XlWindowType.cs │ │ └── XlYesNoGuess.cs │ ├── EventInterfaces │ │ ├── IChartEvents.cs │ │ ├── IPivotControlEvents.cs │ │ ├── IRangeEvents.cs │ │ ├── ISpreadsheetEventSink.cs │ │ ├── _DataSourceControlEvent.cs │ │ └── _NavigationEvent.cs │ ├── Interfaces │ │ ├── DesignAdviseSink.cs │ │ ├── FieldListHierarchySite.cs │ │ ├── IDataPageDesigner.cs │ │ ├── IEnumOleUndoUnits.cs │ │ ├── INavUIHost.cs │ │ ├── IOfflineInfo.cs │ │ ├── IOleParentUndoUnit.cs │ │ ├── IOleUndoManager.cs │ │ ├── IOleUndoUnit.cs │ │ ├── ISimpleDataConverter.cs │ │ └── OCDirty.cs │ ├── OWC10Api.csproj │ └── Utils │ │ └── ProjectInfo.cs ├── Office │ ├── AssemblyInfo.cs │ ├── Classes │ │ ├── CommandBarButton.cs │ │ ├── CommandBarComboBox.cs │ │ ├── CommandBars.cs │ │ ├── CustomTaskPane.cs │ │ ├── CustomXMLPart.cs │ │ ├── CustomXMLParts.cs │ │ ├── CustomXMLSchemaCollection.cs │ │ └── MsoEnvelope.cs │ ├── DispatchInterfaces │ │ ├── Adjustments.cs │ │ ├── AnswerWizard.cs │ │ ├── AnswerWizardFiles.cs │ │ ├── Assistant.cs │ │ ├── Axes.cs │ │ ├── Balloon.cs │ │ ├── BalloonCheckbox.cs │ │ ├── BalloonCheckboxes.cs │ │ ├── BalloonLabel.cs │ │ ├── BalloonLabels.cs │ │ ├── BulletFormat2.cs │ │ ├── COMAddIn.cs │ │ ├── COMAddIns.cs │ │ ├── CalloutFormat.cs │ │ ├── CanvasShapes.cs │ │ ├── ChartFillFormat.cs │ │ ├── ChartFont.cs │ │ ├── ChartGroups.cs │ │ ├── ColorFormat.cs │ │ ├── CommandBar.cs │ │ ├── CommandBarControl.cs │ │ ├── CommandBarControls.cs │ │ ├── CommandBarPopup.cs │ │ ├── ConnectorFormat.cs │ │ ├── ContactCard.cs │ │ ├── Crop.cs │ │ ├── CustomTaskPaneEvents.cs │ │ ├── CustomXMLNode.cs │ │ ├── CustomXMLNodes.cs │ │ ├── CustomXMLPrefixMapping.cs │ │ ├── CustomXMLPrefixMappings.cs │ │ ├── CustomXMLSchema.cs │ │ ├── CustomXMLValidationError.cs │ │ ├── CustomXMLValidationErrors.cs │ │ ├── DiagramNode.cs │ │ ├── DiagramNodeChildren.cs │ │ ├── DiagramNodes.cs │ │ ├── DocumentInspector.cs │ │ ├── DocumentInspectors.cs │ │ ├── DocumentLibraryVersion.cs │ │ ├── DocumentLibraryVersions.cs │ │ ├── EffectParameter.cs │ │ ├── EffectParameters.cs │ │ ├── EncryptionProvider.cs │ │ ├── FileDialog.cs │ │ ├── FileDialogFilter.cs │ │ ├── FileDialogFilters.cs │ │ ├── FileDialogSelectedItems.cs │ │ ├── FileSearch.cs │ │ ├── FileTypes.cs │ │ ├── FillFormat.cs │ │ ├── Font2.cs │ │ ├── FoundFiles.cs │ │ ├── FreeformBuilder.cs │ │ ├── GlowFormat.cs │ │ ├── GradientStop.cs │ │ ├── GradientStops.cs │ │ ├── GridLines.cs │ │ ├── GroupShapes.cs │ │ ├── HTMLProject.cs │ │ ├── HTMLProjectItem.cs │ │ ├── HTMLProjectItems.cs │ │ ├── IAccessible.cs │ │ ├── IAssistance.cs │ │ ├── IBlogExtensibility.cs │ │ ├── IBlogPictureExtensibility.cs │ │ ├── ICTPFactory.cs │ │ ├── ICommandBarButtonEvents.cs │ │ ├── ICommandBarComboBoxEvents.cs │ │ ├── ICommandBarsEvents.cs │ │ ├── ICustomTaskPaneConsumer.cs │ │ ├── ICustomXMLPartEvents.cs │ │ ├── ICustomXMLPartsEvents.cs │ │ ├── IFind.cs │ │ ├── IFoundFiles.cs │ │ ├── ILicAgent.cs │ │ ├── ILicValidator.cs │ │ ├── ILicWizExternal.cs │ │ ├── IMsoAxis.cs │ │ ├── IMsoAxisTitle.cs │ │ ├── IMsoBorder.cs │ │ ├── IMsoCharacters.cs │ │ ├── IMsoChart.cs │ │ ├── IMsoChartArea.cs │ │ ├── IMsoChartData.cs │ │ ├── IMsoChartFormat.cs │ │ ├── IMsoChartGroup.cs │ │ ├── IMsoChartTitle.cs │ │ ├── IMsoContactCard.cs │ │ ├── IMsoCorners.cs │ │ ├── IMsoDataTable.cs │ │ ├── IMsoDiagram.cs │ │ ├── IMsoDispCagNotifySink.cs │ │ ├── IMsoDisplayUnitLabel.cs │ │ ├── IMsoDownBars.cs │ │ ├── IMsoDropLines.cs │ │ ├── IMsoEServicesDialog.cs │ │ ├── IMsoEnvelopeVB.cs │ │ ├── IMsoFloor.cs │ │ ├── IMsoHiLoLines.cs │ │ ├── IMsoHyperlinks.cs │ │ ├── IMsoInterior.cs │ │ ├── IMsoLeaderLines.cs │ │ ├── IMsoLegend.cs │ │ ├── IMsoPlotArea.cs │ │ ├── IMsoSeriesLines.cs │ │ ├── IMsoTickLabels.cs │ │ ├── IMsoUpBars.cs │ │ ├── IMsoWalls.cs │ │ ├── IRibbonControl.cs │ │ ├── IRibbonExtensibility.cs │ │ ├── IRibbonUI.cs │ │ ├── LanguageSettings.cs │ │ ├── LineFormat.cs │ │ ├── MetaProperties.cs │ │ ├── MetaProperty.cs │ │ ├── MsoDebugOptions.cs │ │ ├── MsoDebugOptions_UT.cs │ │ ├── MsoDebugOptions_UTManager.cs │ │ ├── MsoDebugOptions_UTRunResult.cs │ │ ├── MsoDebugOptions_UTs.cs │ │ ├── NewFile.cs │ │ ├── ODSOColumn.cs │ │ ├── ODSOColumns.cs │ │ ├── ODSOFilter.cs │ │ ├── ODSOFilters.cs │ │ ├── OfficeDataSourceObject.cs │ │ ├── OfficeTheme.cs │ │ ├── ParagraphFormat2.cs │ │ ├── Permission.cs │ │ ├── PickerDialog.cs │ │ ├── PickerField.cs │ │ ├── PickerFields.cs │ │ ├── PickerProperties.cs │ │ ├── PickerProperty.cs │ │ ├── PickerResult.cs │ │ ├── PickerResults.cs │ │ ├── PictureEffect.cs │ │ ├── PictureEffects.cs │ │ ├── PictureFormat.cs │ │ ├── PolicyItem.cs │ │ ├── PropertyTest.cs │ │ ├── PropertyTests.cs │ │ ├── ReflectionFormat.cs │ │ ├── Ruler2.cs │ │ ├── RulerLevel2.cs │ │ ├── RulerLevels2.cs │ │ ├── ScopeFolder.cs │ │ ├── ScopeFolders.cs │ │ ├── Script.cs │ │ ├── Scripts.cs │ │ ├── SearchFolders.cs │ │ ├── SearchScope.cs │ │ ├── SearchScopes.cs │ │ ├── ServerPolicy.cs │ │ ├── ShadowFormat.cs │ │ ├── Shape.cs │ │ ├── ShapeNode.cs │ │ ├── ShapeNodes.cs │ │ ├── ShapeRange.cs │ │ ├── Shapes.cs │ │ ├── SharedWorkspace.cs │ │ ├── SharedWorkspaceFile.cs │ │ ├── SharedWorkspaceFiles.cs │ │ ├── SharedWorkspaceFolder.cs │ │ ├── SharedWorkspaceFolders.cs │ │ ├── SharedWorkspaceLink.cs │ │ ├── SharedWorkspaceLinks.cs │ │ ├── SharedWorkspaceMember.cs │ │ ├── SharedWorkspaceMembers.cs │ │ ├── SharedWorkspaceTask.cs │ │ ├── SharedWorkspaceTasks.cs │ │ ├── Signature.cs │ │ ├── SignatureInfo.cs │ │ ├── SignatureProvider.cs │ │ ├── SignatureSet.cs │ │ ├── SignatureSetup.cs │ │ ├── SmartArt.cs │ │ ├── SmartArtColor.cs │ │ ├── SmartArtColors.cs │ │ ├── SmartArtLayout.cs │ │ ├── SmartArtLayouts.cs │ │ ├── SmartArtNode.cs │ │ ├── SmartArtNodes.cs │ │ ├── SmartArtQuickStyle.cs │ │ ├── SmartArtQuickStyles.cs │ │ ├── SmartDocument.cs │ │ ├── SoftEdgeFormat.cs │ │ ├── Sync.cs │ │ ├── TabStop2.cs │ │ ├── TabStops2.cs │ │ ├── TextColumn2.cs │ │ ├── TextEffectFormat.cs │ │ ├── TextFrame.cs │ │ ├── TextFrame2.cs │ │ ├── TextRange2.cs │ │ ├── ThemeColor.cs │ │ ├── ThemeColorScheme.cs │ │ ├── ThemeEffectScheme.cs │ │ ├── ThemeFont.cs │ │ ├── ThemeFontScheme.cs │ │ ├── ThemeFonts.cs │ │ ├── ThreeDFormat.cs │ │ ├── UserPermission.cs │ │ ├── WebComponent.cs │ │ ├── WebComponentFormat.cs │ │ ├── WebComponentProperties.cs │ │ ├── WebComponentWindowExternal.cs │ │ ├── WebPageFont.cs │ │ ├── WebPageFonts.cs │ │ ├── WorkflowTask.cs │ │ ├── WorkflowTasks.cs │ │ ├── WorkflowTemplate.cs │ │ ├── WorkflowTemplates.cs │ │ ├── _CommandBarActiveX.cs │ │ ├── _CommandBarButton.cs │ │ ├── _CommandBarComboBox.cs │ │ ├── _CommandBars.cs │ │ ├── _CustomTaskPane.cs │ │ ├── _CustomXMLPart.cs │ │ ├── _CustomXMLParts.cs │ │ ├── _CustomXMLSchemaCollection.cs │ │ ├── _IMsoDispObj.cs │ │ └── _IMsoOleAccDispObj.cs │ ├── Enums │ │ ├── BackstageGroupStyle.cs │ │ ├── CertificateDetail.cs │ │ ├── CertificateVerificationResults.cs │ │ ├── ContentVerificationResults.cs │ │ ├── DocProperties.cs │ │ ├── EncryptionCipherMode.cs │ │ ├── EncryptionProviderDetail.cs │ │ ├── MailFormat.cs │ │ ├── MsoAlertButtonType.cs │ │ ├── MsoAlertCancelType.cs │ │ ├── MsoAlertDefaultType.cs │ │ ├── MsoAlertIconType.cs │ │ ├── MsoAlignCmd.cs │ │ ├── MsoAnimationType.cs │ │ ├── MsoAppLanguageID.cs │ │ ├── MsoArrowheadLength.cs │ │ ├── MsoArrowheadStyle.cs │ │ ├── MsoArrowheadWidth.cs │ │ ├── MsoAutoShapeType.cs │ │ ├── MsoAutoSize.cs │ │ ├── MsoAutomationSecurity.cs │ │ ├── MsoBackgroundStyleIndex.cs │ │ ├── MsoBalloonButtonType.cs │ │ ├── MsoBalloonErrorType.cs │ │ ├── MsoBalloonType.cs │ │ ├── MsoBarPosition.cs │ │ ├── MsoBarProtection.cs │ │ ├── MsoBarRow.cs │ │ ├── MsoBarType.cs │ │ ├── MsoBaselineAlignment.cs │ │ ├── MsoBevelType.cs │ │ ├── MsoBlackWhiteMode.cs │ │ ├── MsoBlogCategorySupport.cs │ │ ├── MsoBlogImageType.cs │ │ ├── MsoBroadcastCapabilities.cs │ │ ├── MsoBroadcastState.cs │ │ ├── MsoBulletType.cs │ │ ├── MsoButtonSetType.cs │ │ ├── MsoButtonState.cs │ │ ├── MsoButtonStyle.cs │ │ ├── MsoButtonStyleHidden.cs │ │ ├── MsoCTPDockPosition.cs │ │ ├── MsoCTPDockPositionRestrict.cs │ │ ├── MsoCalloutAngleType.cs │ │ ├── MsoCalloutDropType.cs │ │ ├── MsoCalloutType.cs │ │ ├── MsoCharacterSet.cs │ │ ├── MsoChartElementType.cs │ │ ├── MsoChartFieldType.cs │ │ ├── MsoClipboardFormat.cs │ │ ├── MsoColorType.cs │ │ ├── MsoComboStyle.cs │ │ ├── MsoCommandBarButtonHyperlinkType.cs │ │ ├── MsoCondition.cs │ │ ├── MsoConnector.cs │ │ ├── MsoConnectorType.cs │ │ ├── MsoContactCardAddressType.cs │ │ ├── MsoContactCardStyle.cs │ │ ├── MsoContactCardType.cs │ │ ├── MsoControlOLEUsage.cs │ │ ├── MsoControlType.cs │ │ ├── MsoCustomXMLNodeType.cs │ │ ├── MsoCustomXMLValidationErrorType.cs │ │ ├── MsoDateTimeFormat.cs │ │ ├── MsoDiagramNodeType.cs │ │ ├── MsoDiagramType.cs │ │ ├── MsoDistributeCmd.cs │ │ ├── MsoDocInspectorStatus.cs │ │ ├── MsoDocProperties.cs │ │ ├── MsoEditingType.cs │ │ ├── MsoEncoding.cs │ │ ├── MsoExtraInfoMethod.cs │ │ ├── MsoExtrusionColorType.cs │ │ ├── MsoFarEastLineBreakLanguageID.cs │ │ ├── MsoFeatureInstall.cs │ │ ├── MsoFileDialogType.cs │ │ ├── MsoFileDialogView.cs │ │ ├── MsoFileFindListBy.cs │ │ ├── MsoFileFindOptions.cs │ │ ├── MsoFileFindSortBy.cs │ │ ├── MsoFileFindView.cs │ │ ├── MsoFileNewAction.cs │ │ ├── MsoFileNewSection.cs │ │ ├── MsoFileType.cs │ │ ├── MsoFileValidationMode.cs │ │ ├── MsoFillType.cs │ │ ├── MsoFilterComparison.cs │ │ ├── MsoFilterConjunction.cs │ │ ├── MsoFlipCmd.cs │ │ ├── MsoFontLanguageIndex.cs │ │ ├── MsoGradientColorType.cs │ │ ├── MsoGradientStyle.cs │ │ ├── MsoHTMLProjectOpen.cs │ │ ├── MsoHTMLProjectState.cs │ │ ├── MsoHorizontalAnchor.cs │ │ ├── MsoHyperlinkType.cs │ │ ├── MsoIconType.cs │ │ ├── MsoIodGroup.cs │ │ ├── MsoLanguageID.cs │ │ ├── MsoLanguageIDHidden.cs │ │ ├── MsoLastModified.cs │ │ ├── MsoLightRigType.cs │ │ ├── MsoLineCapStyle.cs │ │ ├── MsoLineDashStyle.cs │ │ ├── MsoLineFillType.cs │ │ ├── MsoLineJoinStyle.cs │ │ ├── MsoLineStyle.cs │ │ ├── MsoMenuAnimation.cs │ │ ├── MsoMergeCmd.cs │ │ ├── MsoMetaPropertyType.cs │ │ ├── MsoMixedType.cs │ │ ├── MsoModeType.cs │ │ ├── MsoMoveRow.cs │ │ ├── MsoNumberedBulletStyle.cs │ │ ├── MsoOLEMenuGroup.cs │ │ ├── MsoOrgChartLayoutType.cs │ │ ├── MsoOrgChartOrientation.cs │ │ ├── MsoOrientation.cs │ │ ├── MsoParagraphAlignment.cs │ │ ├── MsoPathFormat.cs │ │ ├── MsoPatternType.cs │ │ ├── MsoPermission.cs │ │ ├── MsoPickerField.cs │ │ ├── MsoPictureColorType.cs │ │ ├── MsoPictureEffectType.cs │ │ ├── MsoPresetCamera.cs │ │ ├── MsoPresetExtrusionDirection.cs │ │ ├── MsoPresetGradientType.cs │ │ ├── MsoPresetLightingDirection.cs │ │ ├── MsoPresetLightingSoftness.cs │ │ ├── MsoPresetMaterial.cs │ │ ├── MsoPresetTextEffect.cs │ │ ├── MsoPresetTextEffectShape.cs │ │ ├── MsoPresetTexture.cs │ │ ├── MsoPresetThreeDFormat.cs │ │ ├── MsoReflectionType.cs │ │ ├── MsoRelativeNodePosition.cs │ │ ├── MsoScaleFrom.cs │ │ ├── MsoScreenSize.cs │ │ ├── MsoScriptLanguage.cs │ │ ├── MsoScriptLocation.cs │ │ ├── MsoSearchIn.cs │ │ ├── MsoSegmentType.cs │ │ ├── MsoShadowStyle.cs │ │ ├── MsoShadowType.cs │ │ ├── MsoShapeStyleIndex.cs │ │ ├── MsoShapeType.cs │ │ ├── MsoSharedWorkspaceTaskPriority.cs │ │ ├── MsoSharedWorkspaceTaskStatus.cs │ │ ├── MsoSignatureSubset.cs │ │ ├── MsoSmartArtNodePosition.cs │ │ ├── MsoSmartArtNodeType.cs │ │ ├── MsoSoftEdgeType.cs │ │ ├── MsoSortBy.cs │ │ ├── MsoSortOrder.cs │ │ ├── MsoSyncAvailableType.cs │ │ ├── MsoSyncCompareType.cs │ │ ├── MsoSyncConflictResolutionType.cs │ │ ├── MsoSyncErrorType.cs │ │ ├── MsoSyncEventType.cs │ │ ├── MsoSyncStatusType.cs │ │ ├── MsoSyncVersionType.cs │ │ ├── MsoTabStopType.cs │ │ ├── MsoTargetBrowser.cs │ │ ├── MsoTextCaps.cs │ │ ├── MsoTextChangeCase.cs │ │ ├── MsoTextCharWrap.cs │ │ ├── MsoTextDirection.cs │ │ ├── MsoTextEffectAlignment.cs │ │ ├── MsoTextFontAlign.cs │ │ ├── MsoTextOrientation.cs │ │ ├── MsoTextStrike.cs │ │ ├── MsoTextTabAlign.cs │ │ ├── MsoTextUnderlineType.cs │ │ ├── MsoTextureAlignment.cs │ │ ├── MsoTextureType.cs │ │ ├── MsoThemeColorIndex.cs │ │ ├── MsoThemeColorSchemeIndex.cs │ │ ├── MsoTriState.cs │ │ ├── MsoVerticalAnchor.cs │ │ ├── MsoWarpFormat.cs │ │ ├── MsoWizardActType.cs │ │ ├── MsoWizardMsgType.cs │ │ ├── MsoZOrderCmd.cs │ │ ├── RibbonControlSize.cs │ │ ├── SignatureDetail.cs │ │ ├── SignatureLineImage.cs │ │ ├── SignatureProviderDetail.cs │ │ ├── SignatureType.cs │ │ ├── XlAxisCrosses.cs │ │ ├── XlAxisGroup.cs │ │ ├── XlAxisType.cs │ │ ├── XlBarShape.cs │ │ ├── XlBorderWeight.cs │ │ ├── XlCategoryLabelLevel.cs │ │ ├── XlCategoryType.cs │ │ ├── XlChartElementPosition.cs │ │ ├── XlChartItem.cs │ │ ├── XlChartOrientation.cs │ │ ├── XlChartPictureType.cs │ │ ├── XlChartSplitType.cs │ │ ├── XlChartType.cs │ │ ├── XlColorIndex.cs │ │ ├── XlConstants.cs │ │ ├── XlDataLabelPosition.cs │ │ ├── XlDataLabelsType.cs │ │ ├── XlDisplayBlanksAs.cs │ │ ├── XlDisplayUnit.cs │ │ ├── XlEndStyleCap.cs │ │ ├── XlErrorBarDirection.cs │ │ ├── XlErrorBarInclude.cs │ │ ├── XlErrorBarType.cs │ │ ├── XlHAlign.cs │ │ ├── XlLegendPosition.cs │ │ ├── XlMarkerStyle.cs │ │ ├── XlPieSliceIndex.cs │ │ ├── XlPieSliceLocation.cs │ │ ├── XlPivotFieldOrientation.cs │ │ ├── XlReadingOrder.cs │ │ ├── XlRowCol.cs │ │ ├── XlScaleType.cs │ │ ├── XlSeriesNameLevel.cs │ │ ├── XlSizeRepresents.cs │ │ ├── XlTickLabelOrientation.cs │ │ ├── XlTickLabelPosition.cs │ │ ├── XlTickMark.cs │ │ ├── XlTimeUnit.cs │ │ ├── XlTrendlineType.cs │ │ ├── XlUnderlineStyle.cs │ │ └── XlVAlign.cs │ ├── EventInterfaces │ │ ├── IMsoEnvelopeVBEvents.cs │ │ ├── _CommandBarButtonEvents.cs │ │ ├── _CommandBarComboBoxEvents.cs │ │ ├── _CommandBarsEvents.cs │ │ ├── _CustomTaskPaneEvents.cs │ │ ├── _CustomXMLPartEvents.cs │ │ └── _CustomXMLPartsEvents.cs │ ├── Interfaces │ │ ├── CategoryCollection.cs │ │ ├── ChartColorFormat.cs │ │ ├── ChartPoint.cs │ │ ├── DocumentProperties.cs │ │ ├── DocumentProperty.cs │ │ ├── FullSeriesCollection.cs │ │ ├── IConverter.cs │ │ ├── IConverterApplicationPreferences.cs │ │ ├── IConverterPreferences.cs │ │ ├── IConverterUICallback.cs │ │ ├── IDocumentInspector.cs │ │ ├── IMsoCategory.cs │ │ ├── IMsoDataLabel.cs │ │ ├── IMsoDataLabels.cs │ │ ├── IMsoErrorBars.cs │ │ ├── IMsoLegendKey.cs │ │ ├── IMsoSeries.cs │ │ ├── IMsoTrendline.cs │ │ ├── LegendEntries.cs │ │ ├── LegendEntry.cs │ │ ├── Points.cs │ │ ├── SeriesCollection.cs │ │ └── Trendlines.cs │ ├── OfficeApi.csproj │ ├── Properties │ │ ├── Resources.Designer.cs │ │ └── Resources.resx │ ├── Tools │ │ ├── COMAddin.cs │ │ ├── CustomTaskPaneCollection.cs │ │ ├── Dialogs │ │ │ ├── AboutDialog.1031.xml │ │ │ ├── AboutDialog.1033.xml │ │ │ ├── AboutDialog.Designer.cs │ │ │ ├── AboutDialog.cs │ │ │ ├── AboutDialog.resx │ │ │ ├── DiagnosticsDialog.1031.xml │ │ │ ├── DiagnosticsDialog.1033.xml │ │ │ ├── DiagnosticsDialog.Designer.cs │ │ │ ├── DiagnosticsDialog.cs │ │ │ ├── DiagnosticsDialog.resx │ │ │ ├── DialogLayoutSettings.cs │ │ │ ├── DialogLocalizationSettings.cs │ │ │ ├── ErrorDialog.1031.xml │ │ │ ├── ErrorDialog.1033.xml │ │ │ ├── ErrorDialog.Designer.cs │ │ │ ├── ErrorDialog.cs │ │ │ ├── ErrorDialog.resx │ │ │ ├── RichTextDialog.1031.xml │ │ │ ├── RichTextDialog.1033.xml │ │ │ ├── RichTextDialog.Designer.cs │ │ │ ├── RichTextDialog.cs │ │ │ ├── RichTextDialog.resx │ │ │ ├── ToolsDialog.Designer.cs │ │ │ ├── ToolsDialog.cs │ │ │ └── ToolsDialog.resx │ │ ├── ITaskPane.cs │ │ ├── Informations │ │ │ ├── AppDomainInfo.cs │ │ │ ├── AssemblyInfo.cs │ │ │ ├── DiagnosticPair.cs │ │ │ ├── DiagnosticPairCollection.cs │ │ │ ├── EnvironmentInfo.cs │ │ │ ├── HostInfo.cs │ │ │ └── Infos.cs │ │ ├── MultiRegisterAttribute.cs │ │ └── Utils │ │ │ ├── ColorUtils.cs │ │ │ ├── CommonUtils.cs │ │ │ ├── DialogUtils.cs │ │ │ ├── ImageUtils.cs │ │ │ ├── ResourceUtils.cs │ │ │ └── TrayUtils.cs │ └── Utils │ │ └── ProjectInfo.cs ├── Outlook │ ├── AssemblyInfo.cs │ ├── Classes │ │ ├── Account.cs │ │ ├── AccountRuleCondition.cs │ │ ├── AccountSelector.cs │ │ ├── Accounts.cs │ │ ├── AddressRuleCondition.cs │ │ ├── Application.cs │ │ ├── AppointmentItem.cs │ │ ├── AssignToCategoryRuleAction.cs │ │ ├── AttachmentSelection.cs │ │ ├── AutoFormatRule.cs │ │ ├── AutoFormatRules.cs │ │ ├── BusinessCardView.cs │ │ ├── CalendarModule.cs │ │ ├── CalendarSharing.cs │ │ ├── CalendarView.cs │ │ ├── CardView.cs │ │ ├── Categories.cs │ │ ├── Category.cs │ │ ├── CategoryRuleCondition.cs │ │ ├── Column.cs │ │ ├── ColumnFormat.cs │ │ ├── Columns.cs │ │ ├── ContactItem.cs │ │ ├── ContactsModule.cs │ │ ├── Conversation.cs │ │ ├── ConversationHeader.cs │ │ ├── DataSourceObject.cs │ │ ├── DistListItem.cs │ │ ├── DoNotUseMeFolder.cs │ │ ├── DocumentItem.cs │ │ ├── ExchangeDistributionList.cs │ │ ├── ExchangeUser.cs │ │ ├── Explorer.cs │ │ ├── Explorers.cs │ │ ├── Folder.cs │ │ ├── Folders.cs │ │ ├── FormNameRuleCondition.cs │ │ ├── FormRegion.cs │ │ ├── FormRegionStartup.cs │ │ ├── FromRssFeedRuleCondition.cs │ │ ├── IconView.cs │ │ ├── ImportanceRuleCondition.cs │ │ ├── Inspector.cs │ │ ├── Inspectors.cs │ │ ├── Items.cs │ │ ├── JournalItem.cs │ │ ├── JournalModule.cs │ │ ├── MailItem.cs │ │ ├── MailModule.cs │ │ ├── MarkAsTaskRuleAction.cs │ │ ├── MeetingItem.cs │ │ ├── MobileItem.cs │ │ ├── MoveOrCopyRuleAction.cs │ │ ├── NameSpace.cs │ │ ├── NavigationFolder.cs │ │ ├── NavigationFolders.cs │ │ ├── NavigationGroup.cs │ │ ├── NavigationGroups.cs │ │ ├── NavigationModule.cs │ │ ├── NavigationModules.cs │ │ ├── NavigationPane.cs │ │ ├── NewItemAlertRuleAction.cs │ │ ├── NoteItem.cs │ │ ├── NotesModule.cs │ │ ├── OlkBusinessCardControl.cs │ │ ├── OlkCategory.cs │ │ ├── OlkCheckBox.cs │ │ ├── OlkComboBox.cs │ │ ├── OlkCommandButton.cs │ │ ├── OlkContactPhoto.cs │ │ ├── OlkDateControl.cs │ │ ├── OlkFrameHeader.cs │ │ ├── OlkInfoBar.cs │ │ ├── OlkLabel.cs │ │ ├── OlkListBox.cs │ │ ├── OlkOptionButton.cs │ │ ├── OlkPageControl.cs │ │ ├── OlkSenderPhoto.cs │ │ ├── OlkTextBox.cs │ │ ├── OlkTimeControl.cs │ │ ├── OlkTimeZoneControl.cs │ │ ├── OrderField.cs │ │ ├── OrderFields.cs │ │ ├── OutlookBarGroups.cs │ │ ├── OutlookBarPane.cs │ │ ├── OutlookBarShortcuts.cs │ │ ├── PeopleView.cs │ │ ├── PlaySoundRuleAction.cs │ │ ├── PostItem.cs │ │ ├── PropertyAccessor.cs │ │ ├── Reminder.cs │ │ ├── Reminders.cs │ │ ├── RemoteItem.cs │ │ ├── ReportItem.cs │ │ ├── Results.cs │ │ ├── Row.cs │ │ ├── Rule.cs │ │ ├── RuleAction.cs │ │ ├── RuleActions.cs │ │ ├── RuleCondition.cs │ │ ├── RuleConditions.cs │ │ ├── Rules.cs │ │ ├── SelectNamesDialog.cs │ │ ├── SendRuleAction.cs │ │ ├── SenderInAddressListRuleCondition.cs │ │ ├── SharingItem.cs │ │ ├── SimpleItems.cs │ │ ├── SolutionsModule.cs │ │ ├── StorageItem.cs │ │ ├── Store.cs │ │ ├── Stores.cs │ │ ├── SyncObject.cs │ │ ├── Table.cs │ │ ├── TableView.cs │ │ ├── TaskItem.cs │ │ ├── TaskRequestAcceptItem.cs │ │ ├── TaskRequestDeclineItem.cs │ │ ├── TaskRequestItem.cs │ │ ├── TaskRequestUpdateItem.cs │ │ ├── TasksModule.cs │ │ ├── TextRuleCondition.cs │ │ ├── TimeZone.cs │ │ ├── TimeZones.cs │ │ ├── TimelineView.cs │ │ ├── ToOrFromRuleCondition.cs │ │ ├── UserDefinedProperties.cs │ │ ├── UserDefinedProperty.cs │ │ ├── ViewField.cs │ │ ├── ViewFields.cs │ │ ├── ViewFont.cs │ │ ├── Views.cs │ │ ├── _DocSiteControl.cs │ │ ├── _DpxCtrl.cs │ │ ├── _InspectorCtrl.cs │ │ ├── _PageWrapCtrl.cs │ │ └── _RecipientControl.cs │ ├── DispatchInterfaces │ │ ├── Action.cs │ │ ├── Actions.cs │ │ ├── AddressEntries.cs │ │ ├── AddressEntry.cs │ │ ├── AddressList.cs │ │ ├── AddressLists.cs │ │ ├── Attachment.cs │ │ ├── Attachments.cs │ │ ├── Conflict.cs │ │ ├── Conflicts.cs │ │ ├── DDataSourceObject.cs │ │ ├── Exception.cs │ │ ├── Exceptions.cs │ │ ├── FormDescription.cs │ │ ├── ItemProperties.cs │ │ ├── ItemProperty.cs │ │ ├── Link.cs │ │ ├── Links.cs │ │ ├── MAPIFolder.cs │ │ ├── OlkControl.cs │ │ ├── OutlookBarGroup.cs │ │ ├── OutlookBarShortcut.cs │ │ ├── OutlookBarStorage.cs │ │ ├── Pages.cs │ │ ├── Panes.cs │ │ ├── PropertyPageSite.cs │ │ ├── PropertyPages.cs │ │ ├── Recipient.cs │ │ ├── Recipients.cs │ │ ├── RecurrencePattern.cs │ │ ├── Search.cs │ │ ├── Selection.cs │ │ ├── SyncObjects.cs │ │ ├── UserProperties.cs │ │ ├── UserProperty.cs │ │ ├── View.cs │ │ ├── _Account.cs │ │ ├── _AccountRuleCondition.cs │ │ ├── _AccountSelector.cs │ │ ├── _Accounts.cs │ │ ├── _AddressRuleCondition.cs │ │ ├── _Application.cs │ │ ├── _AppointmentItem.cs │ │ ├── _AssignToCategoryRuleAction.cs │ │ ├── _AttachmentSelection.cs │ │ ├── _AutoFormatRule.cs │ │ ├── _AutoFormatRules.cs │ │ ├── _BusinessCardView.cs │ │ ├── _CalendarModule.cs │ │ ├── _CalendarSharing.cs │ │ ├── _CalendarView.cs │ │ ├── _CardView.cs │ │ ├── _Categories.cs │ │ ├── _Category.cs │ │ ├── _CategoryRuleCondition.cs │ │ ├── _Column.cs │ │ ├── _ColumnFormat.cs │ │ ├── _Columns.cs │ │ ├── _ContactItem.cs │ │ ├── _ContactsModule.cs │ │ ├── _Conversation.cs │ │ ├── _ConversationHeader.cs │ │ ├── _DDocSiteControl.cs │ │ ├── _DInspectorCtrl.cs │ │ ├── _DPageWrapCtrl.cs │ │ ├── _DRecipientControl.cs │ │ ├── _DistListItem.cs │ │ ├── _DocumentItem.cs │ │ ├── _ExchangeDistributionList.cs │ │ ├── _ExchangeUser.cs │ │ ├── _Explorer.cs │ │ ├── _Explorers.cs │ │ ├── _Folders.cs │ │ ├── _FormNameRuleCondition.cs │ │ ├── _FormRegion.cs │ │ ├── _FormRegionStartup.cs │ │ ├── _FromRssFeedRuleCondition.cs │ │ ├── _IDpxCtrl.cs │ │ ├── _IconView.cs │ │ ├── _ImportanceRuleCondition.cs │ │ ├── _Inspector.cs │ │ ├── _Inspectors.cs │ │ ├── _Items.cs │ │ ├── _JournalItem.cs │ │ ├── _JournalModule.cs │ │ ├── _MailItem.cs │ │ ├── _MailModule.cs │ │ ├── _MarkAsTaskRuleAction.cs │ │ ├── _MeetingItem.cs │ │ ├── _MobileItem.cs │ │ ├── _MoveOrCopyRuleAction.cs │ │ ├── _NameSpace.cs │ │ ├── _NavigationFolder.cs │ │ ├── _NavigationFolders.cs │ │ ├── _NavigationGroup.cs │ │ ├── _NavigationGroups.cs │ │ ├── _NavigationModule.cs │ │ ├── _NavigationModules.cs │ │ ├── _NavigationPane.cs │ │ ├── _NewItemAlertRuleAction.cs │ │ ├── _NoteItem.cs │ │ ├── _NotesModule.cs │ │ ├── _OlkBusinessCardControl.cs │ │ ├── _OlkCategory.cs │ │ ├── _OlkCheckBox.cs │ │ ├── _OlkComboBox.cs │ │ ├── _OlkCommandButton.cs │ │ ├── _OlkContactPhoto.cs │ │ ├── _OlkDateControl.cs │ │ ├── _OlkFrameHeader.cs │ │ ├── _OlkInfoBar.cs │ │ ├── _OlkLabel.cs │ │ ├── _OlkListBox.cs │ │ ├── _OlkOptionButton.cs │ │ ├── _OlkPageControl.cs │ │ ├── _OlkSenderPhoto.cs │ │ ├── _OlkTextBox.cs │ │ ├── _OlkTimeControl.cs │ │ ├── _OlkTimeZoneControl.cs │ │ ├── _OrderField.cs │ │ ├── _OrderFields.cs │ │ ├── _OutlookBarGroups.cs │ │ ├── _OutlookBarPane.cs │ │ ├── _OutlookBarShortcuts.cs │ │ ├── _PeopleView.cs │ │ ├── _PlaySoundRuleAction.cs │ │ ├── _PostItem.cs │ │ ├── _PropertyAccessor.cs │ │ ├── _Reminder.cs │ │ ├── _Reminders.cs │ │ ├── _RemoteItem.cs │ │ ├── _ReportItem.cs │ │ ├── _Results.cs │ │ ├── _Row.cs │ │ ├── _Rule.cs │ │ ├── _RuleAction.cs │ │ ├── _RuleActions.cs │ │ ├── _RuleCondition.cs │ │ ├── _RuleConditions.cs │ │ ├── _Rules.cs │ │ ├── _SelectNamesDialog.cs │ │ ├── _SendRuleAction.cs │ │ ├── _SenderInAddressListRuleCondition.cs │ │ ├── _SharingItem.cs │ │ ├── _SimpleItems.cs │ │ ├── _SolutionsModule.cs │ │ ├── _StorageItem.cs │ │ ├── _Store.cs │ │ ├── _Stores.cs │ │ ├── _SyncObject.cs │ │ ├── _Table.cs │ │ ├── _TableView.cs │ │ ├── _TaskItem.cs │ │ ├── _TaskRequestAcceptItem.cs │ │ ├── _TaskRequestDeclineItem.cs │ │ ├── _TaskRequestItem.cs │ │ ├── _TaskRequestUpdateItem.cs │ │ ├── _TasksModule.cs │ │ ├── _TextRuleCondition.cs │ │ ├── _TimeZone.cs │ │ ├── _TimeZones.cs │ │ ├── _TimelineView.cs │ │ ├── _ToOrFromRuleCondition.cs │ │ ├── _UserDefinedProperties.cs │ │ ├── _UserDefinedProperty.cs │ │ ├── _ViewField.cs │ │ ├── _ViewFields.cs │ │ ├── _ViewFont.cs │ │ └── _Views.cs │ ├── Enums │ │ ├── OlAccountType.cs │ │ ├── OlActionCopyLike.cs │ │ ├── OlActionReplyStyle.cs │ │ ├── OlActionResponseStyle.cs │ │ ├── OlActionShowOn.cs │ │ ├── OlAddressEntryUserType.cs │ │ ├── OlAddressListType.cs │ │ ├── OlAlign.cs │ │ ├── OlAlignment.cs │ │ ├── OlAlwaysDeleteConversation.cs │ │ ├── OlAppointmentCopyOptions.cs │ │ ├── OlAppointmentTimeField.cs │ │ ├── OlAttachmentBlockLevel.cs │ │ ├── OlAttachmentType.cs │ │ ├── OlAutoDiscoverConnectionMode.cs │ │ ├── OlAutoPreview.cs │ │ ├── OlBackStyle.cs │ │ ├── OlBodyFormat.cs │ │ ├── OlBorderStyle.cs │ │ ├── OlBusinessCardType.cs │ │ ├── OlBusyStatus.cs │ │ ├── OlCalendarDetail.cs │ │ ├── OlCalendarMailFormat.cs │ │ ├── OlCalendarViewMode.cs │ │ ├── OlCategoryColor.cs │ │ ├── OlCategoryShortcutKey.cs │ │ ├── OlColor.cs │ │ ├── OlComboBoxStyle.cs │ │ ├── OlContactPhoneNumber.cs │ │ ├── OlContextMenu.cs │ │ ├── OlDayWeekTimeScale.cs │ │ ├── OlDaysOfWeek.cs │ │ ├── OlDefaultExpandCollapseSetting.cs │ │ ├── OlDefaultFolders.cs │ │ ├── OlDefaultSelectNamesDisplayMode.cs │ │ ├── OlDisplayType.cs │ │ ├── OlDownloadState.cs │ │ ├── OlDragBehavior.cs │ │ ├── OlEditorType.cs │ │ ├── OlEnterFieldBehavior.cs │ │ ├── OlExchangeConnectionMode.cs │ │ ├── OlExchangeStoreType.cs │ │ ├── OlFlagIcon.cs │ │ ├── OlFlagStatus.cs │ │ ├── OlFolderDisplayMode.cs │ │ ├── OlFormRegionIcon.cs │ │ ├── OlFormRegionMode.cs │ │ ├── OlFormRegionSize.cs │ │ ├── OlFormRegistry.cs │ │ ├── OlFormatCurrency.cs │ │ ├── OlFormatDateTime.cs │ │ ├── OlFormatDuration.cs │ │ ├── OlFormatEnumeration.cs │ │ ├── OlFormatInteger.cs │ │ ├── OlFormatKeywords.cs │ │ ├── OlFormatNumber.cs │ │ ├── OlFormatPercent.cs │ │ ├── OlFormatSmartFrom.cs │ │ ├── OlFormatText.cs │ │ ├── OlFormatYesNo.cs │ │ ├── OlGender.cs │ │ ├── OlGridLineStyle.cs │ │ ├── OlGroupType.cs │ │ ├── OlHorizontalLayout.cs │ │ ├── OlIconViewPlacement.cs │ │ ├── OlIconViewType.cs │ │ ├── OlImportance.cs │ │ ├── OlInspectorClose.cs │ │ ├── OlItemType.cs │ │ ├── OlJournalRecipientType.cs │ │ ├── OlMailRecipientType.cs │ │ ├── OlMailingAddress.cs │ │ ├── OlMarkInterval.cs │ │ ├── OlMatchEntry.cs │ │ ├── OlMeetingRecipientType.cs │ │ ├── OlMeetingResponse.cs │ │ ├── OlMeetingStatus.cs │ │ ├── OlMobileFormat.cs │ │ ├── OlMouseButton.cs │ │ ├── OlMousePointer.cs │ │ ├── OlMultiLine.cs │ │ ├── OlMultiSelect.cs │ │ ├── OlNavigationModuleType.cs │ │ ├── OlNetMeetingType.cs │ │ ├── OlNoteColor.cs │ │ ├── OlObjectClass.cs │ │ ├── OlOfficeDocItemsType.cs │ │ ├── OlOutlookBarViewType.cs │ │ ├── OlPageType.cs │ │ ├── OlPane.cs │ │ ├── OlPermission.cs │ │ ├── OlPermissionService.cs │ │ ├── OlPictureAlignment.cs │ │ ├── OlRecipientSelectors.cs │ │ ├── OlRecurrenceState.cs │ │ ├── OlRecurrenceType.cs │ │ ├── OlReferenceType.cs │ │ ├── OlRemoteStatus.cs │ │ ├── OlResponseStatus.cs │ │ ├── OlRuleActionType.cs │ │ ├── OlRuleConditionType.cs │ │ ├── OlRuleExecuteOption.cs │ │ ├── OlRuleType.cs │ │ ├── OlSaveAsType.cs │ │ ├── OlScrollBars.cs │ │ ├── OlSearchScope.cs │ │ ├── OlSelectionContents.cs │ │ ├── OlSelectionLocation.cs │ │ ├── OlSensitivity.cs │ │ ├── OlSharingMsgType.cs │ │ ├── OlSharingProvider.cs │ │ ├── OlShiftState.cs │ │ ├── OlShowItemCount.cs │ │ ├── OlSolutionScope.cs │ │ ├── OlSortOrder.cs │ │ ├── OlSpecialFolders.cs │ │ ├── OlStorageIdentifierType.cs │ │ ├── OlStoreType.cs │ │ ├── OlSyncState.cs │ │ ├── OlTableContents.cs │ │ ├── OlTaskDelegationState.cs │ │ ├── OlTaskOwnership.cs │ │ ├── OlTaskRecipientType.cs │ │ ├── OlTaskResponse.cs │ │ ├── OlTaskStatus.cs │ │ ├── OlTextAlign.cs │ │ ├── OlTimeStyle.cs │ │ ├── OlTimelineViewMode.cs │ │ ├── OlTrackingStatus.cs │ │ ├── OlUserPropertyType.cs │ │ ├── OlVerticalLayout.cs │ │ ├── OlViewSaveOption.cs │ │ ├── OlViewType.cs │ │ └── OlWindowState.cs │ ├── EventInterfaces │ │ ├── AccountSelectorEvents.cs │ │ ├── AccountsEvents.cs │ │ ├── ApplicationEvents.cs │ │ ├── ApplicationEvents_10.cs │ │ ├── ApplicationEvents_11.cs │ │ ├── ExplorerEvents.cs │ │ ├── ExplorerEvents_10.cs │ │ ├── ExplorersEvents.cs │ │ ├── FoldersEvents.cs │ │ ├── FormRegionEvents.cs │ │ ├── InspectorEvents.cs │ │ ├── InspectorEvents_10.cs │ │ ├── InspectorsEvents.cs │ │ ├── ItemEvents.cs │ │ ├── ItemEvents_10.cs │ │ ├── ItemsEvents.cs │ │ ├── MAPIFolderEvents_12.cs │ │ ├── NameSpaceEvents.cs │ │ ├── NavigationGroupsEvents_12.cs │ │ ├── NavigationPaneEvents_12.cs │ │ ├── OlkBusinessCardControlEvents.cs │ │ ├── OlkCategoryEvents.cs │ │ ├── OlkCheckBoxEvents.cs │ │ ├── OlkComboBoxEvents.cs │ │ ├── OlkCommandButtonEvents.cs │ │ ├── OlkContactPhotoEvents.cs │ │ ├── OlkDateControlEvents.cs │ │ ├── OlkFrameHeaderEvents.cs │ │ ├── OlkInfoBarEvents.cs │ │ ├── OlkLabelEvents.cs │ │ ├── OlkListBoxEvents.cs │ │ ├── OlkOptionButtonEvents.cs │ │ ├── OlkPageControlEvents.cs │ │ ├── OlkSenderPhotoEvents.cs │ │ ├── OlkTextBoxEvents.cs │ │ ├── OlkTimeControlEvents.cs │ │ ├── OlkTimeZoneControlEvents.cs │ │ ├── OutlookBarGroupsEvents.cs │ │ ├── OutlookBarPaneEvents.cs │ │ ├── OutlookBarShortcutsEvents.cs │ │ ├── ReminderCollectionEvents.cs │ │ ├── ResultsEvents.cs │ │ ├── StoresEvents_12.cs │ │ ├── SyncObjectEvents.cs │ │ ├── _DDocSiteControlEvents.cs │ │ ├── _DInspectorEvents.cs │ │ ├── _DPageWrapCtrlEvents.cs │ │ ├── _DRecipientControlEvents.cs │ │ └── _ViewsEvents.cs │ ├── Interfaces │ │ ├── PropertyPage.cs │ │ ├── _IDocSiteControl.cs │ │ ├── _IInspectorCtrl.cs │ │ ├── _IPageWrapCtrl.cs │ │ └── _IRecipientControl.cs │ ├── Modules │ │ └── Global.cs │ ├── OutlookApi.csproj │ ├── Tools │ │ ├── COMAddin.cs │ │ ├── ITaskPane.cs │ │ └── Utils │ │ │ ├── ApplicationUtils.cs │ │ │ ├── CommonUtils.cs │ │ │ └── OutlookDialogUtils.cs │ └── Utils │ │ └── ProjectInfo.cs ├── PowerPoint │ ├── AssemblyInfo.cs │ ├── Classes │ │ ├── Application.cs │ │ ├── Master.cs │ │ ├── OLEControl.cs │ │ ├── PowerRex.cs │ │ ├── Presentation.cs │ │ └── Slide.cs │ ├── DispatchInterfaces │ │ ├── ActionSetting.cs │ │ ├── ActionSettings.cs │ │ ├── AddIn.cs │ │ ├── AddIns.cs │ │ ├── Adjustments.cs │ │ ├── AnimationBehavior.cs │ │ ├── AnimationBehaviors.cs │ │ ├── AnimationPoint.cs │ │ ├── AnimationPoints.cs │ │ ├── AnimationSettings.cs │ │ ├── AutoCorrect.cs │ │ ├── Axes.cs │ │ ├── Axis.cs │ │ ├── AxisTitle.cs │ │ ├── Borders.cs │ │ ├── Broadcast.cs │ │ ├── BulletFormat.cs │ │ ├── CalloutFormat.cs │ │ ├── CanvasShapes.cs │ │ ├── CategoryCollection.cs │ │ ├── Cell.cs │ │ ├── CellRange.cs │ │ ├── Chart.cs │ │ ├── ChartArea.cs │ │ ├── ChartBorder.cs │ │ ├── ChartCategory.cs │ │ ├── ChartCharacters.cs │ │ ├── ChartColorFormat.cs │ │ ├── ChartData.cs │ │ ├── ChartFillFormat.cs │ │ ├── ChartFont.cs │ │ ├── ChartFormat.cs │ │ ├── ChartGroup.cs │ │ ├── ChartGroups.cs │ │ ├── ChartTitle.cs │ │ ├── Coauthoring.cs │ │ ├── Collection.cs │ │ ├── ColorEffect.cs │ │ ├── ColorFormat.cs │ │ ├── ColorScheme.cs │ │ ├── ColorSchemes.cs │ │ ├── Column.cs │ │ ├── Columns.cs │ │ ├── CommandEffect.cs │ │ ├── Comment.cs │ │ ├── Comments.cs │ │ ├── ConnectorFormat.cs │ │ ├── Corners.cs │ │ ├── CustomLayout.cs │ │ ├── CustomLayouts.cs │ │ ├── CustomerData.cs │ │ ├── DataLabel.cs │ │ ├── DataLabels.cs │ │ ├── DataTable.cs │ │ ├── DefaultWebOptions.cs │ │ ├── Design.cs │ │ ├── Designs.cs │ │ ├── Diagram.cs │ │ ├── DiagramNode.cs │ │ ├── DiagramNodeChildren.cs │ │ ├── DiagramNodes.cs │ │ ├── DisplayUnitLabel.cs │ │ ├── DocumentWindow.cs │ │ ├── DocumentWindows.cs │ │ ├── DownBars.cs │ │ ├── DropLines.cs │ │ ├── Effect.cs │ │ ├── EffectInformation.cs │ │ ├── EffectParameters.cs │ │ ├── ErrorBars.cs │ │ ├── ExtraColors.cs │ │ ├── FileConverter.cs │ │ ├── FileConverters.cs │ │ ├── FileDialog.cs │ │ ├── FileDialogExtension.cs │ │ ├── FileDialogExtensionList.cs │ │ ├── FileDialogFileList.cs │ │ ├── FillFormat.cs │ │ ├── FilterEffect.cs │ │ ├── Floor.cs │ │ ├── Font.cs │ │ ├── Fonts.cs │ │ ├── FreeformBuilder.cs │ │ ├── FullSeriesCollection.cs │ │ ├── Gridlines.cs │ │ ├── GroupShapes.cs │ │ ├── Guide.cs │ │ ├── Guides.cs │ │ ├── HeaderFooter.cs │ │ ├── HeadersFooters.cs │ │ ├── HiLoLines.cs │ │ ├── Hyperlink.cs │ │ ├── Hyperlinks.cs │ │ ├── Interior.cs │ │ ├── LeaderLines.cs │ │ ├── Legend.cs │ │ ├── LegendEntries.cs │ │ ├── LegendEntry.cs │ │ ├── LegendKey.cs │ │ ├── LineFormat.cs │ │ ├── LinkFormat.cs │ │ ├── Marker.cs │ │ ├── MediaBookmark.cs │ │ ├── MediaBookmarks.cs │ │ ├── MediaFormat.cs │ │ ├── MotionEffect.cs │ │ ├── NamedSlideShow.cs │ │ ├── NamedSlideShows.cs │ │ ├── OCXExtender.cs │ │ ├── OLEFormat.cs │ │ ├── ObjectVerbs.cs │ │ ├── Options.cs │ │ ├── PPAlert.cs │ │ ├── PPBitmap.cs │ │ ├── PPBitmapButton.cs │ │ ├── PPCheckBox.cs │ │ ├── PPControl.cs │ │ ├── PPControls.cs │ │ ├── PPDialog.cs │ │ ├── PPDialogs.cs │ │ ├── PPDropDown.cs │ │ ├── PPDropDownEdit.cs │ │ ├── PPEditText.cs │ │ ├── PPFrame.cs │ │ ├── PPGroupBox.cs │ │ ├── PPIcon.cs │ │ ├── PPListBox.cs │ │ ├── PPPushButton.cs │ │ ├── PPRadioButton.cs │ │ ├── PPRadioCluster.cs │ │ ├── PPScrollBar.cs │ │ ├── PPSlideMiniature.cs │ │ ├── PPSpinner.cs │ │ ├── PPStaticText.cs │ │ ├── PPStrings.cs │ │ ├── PPTabControl.cs │ │ ├── PPTabSheet.cs │ │ ├── PPTabSheets.cs │ │ ├── PPToggleButton.cs │ │ ├── PageSetup.cs │ │ ├── Pane.cs │ │ ├── Panes.cs │ │ ├── ParagraphFormat.cs │ │ ├── PictureFormat.cs │ │ ├── PlaceholderFormat.cs │ │ ├── Placeholders.cs │ │ ├── PlaySettings.cs │ │ ├── Player.cs │ │ ├── PlotArea.cs │ │ ├── Point.cs │ │ ├── Points.cs │ │ ├── Presentations.cs │ │ ├── PrintOptions.cs │ │ ├── PrintRange.cs │ │ ├── PrintRanges.cs │ │ ├── PropertyEffect.cs │ │ ├── ProtectedViewWindow.cs │ │ ├── ProtectedViewWindows.cs │ │ ├── PublishObject.cs │ │ ├── PublishObjects.cs │ │ ├── RGBColor.cs │ │ ├── ResampleMediaTask.cs │ │ ├── ResampleMediaTasks.cs │ │ ├── Research.cs │ │ ├── RotationEffect.cs │ │ ├── Row.cs │ │ ├── Rows.cs │ │ ├── Ruler.cs │ │ ├── RulerLevel.cs │ │ ├── RulerLevels.cs │ │ ├── ScaleEffect.cs │ │ ├── SectionProperties.cs │ │ ├── Selection.cs │ │ ├── Sequence.cs │ │ ├── Sequences.cs │ │ ├── Series.cs │ │ ├── SeriesCollection.cs │ │ ├── SeriesLines.cs │ │ ├── SetEffect.cs │ │ ├── ShadowFormat.cs │ │ ├── Shape.cs │ │ ├── ShapeNode.cs │ │ ├── ShapeNodes.cs │ │ ├── ShapeRange.cs │ │ ├── Shapes.cs │ │ ├── SlideNavigation.cs │ │ ├── SlideRange.cs │ │ ├── SlideShowSettings.cs │ │ ├── SlideShowTransition.cs │ │ ├── SlideShowView.cs │ │ ├── SlideShowWindow.cs │ │ ├── SlideShowWindows.cs │ │ ├── Slides.cs │ │ ├── SoundEffect.cs │ │ ├── SoundFormat.cs │ │ ├── TabStop.cs │ │ ├── TabStops.cs │ │ ├── Table.cs │ │ ├── TableBackground.cs │ │ ├── TableStyle.cs │ │ ├── Tags.cs │ │ ├── TextEffectFormat.cs │ │ ├── TextFrame.cs │ │ ├── TextFrame2.cs │ │ ├── TextRange.cs │ │ ├── TextStyle.cs │ │ ├── TextStyleLevel.cs │ │ ├── TextStyleLevels.cs │ │ ├── TextStyles.cs │ │ ├── Theme.cs │ │ ├── ThemeVariant.cs │ │ ├── ThemeVariants.cs │ │ ├── ThreeDFormat.cs │ │ ├── TickLabels.cs │ │ ├── TimeLine.cs │ │ ├── Timing.cs │ │ ├── Trendline.cs │ │ ├── Trendlines.cs │ │ ├── UpBars.cs │ │ ├── View.cs │ │ ├── Walls.cs │ │ ├── WebOptions.cs │ │ ├── _Application.cs │ │ ├── _Master.cs │ │ ├── _PowerRex.cs │ │ ├── _Presentation.cs │ │ └── _Slide.cs │ ├── Enums │ │ ├── MsoAnimAccumulate.cs │ │ ├── MsoAnimAdditive.cs │ │ ├── MsoAnimAfterEffect.cs │ │ ├── MsoAnimCommandType.cs │ │ ├── MsoAnimDirection.cs │ │ ├── MsoAnimEffect.cs │ │ ├── MsoAnimEffectAfter.cs │ │ ├── MsoAnimEffectRestart.cs │ │ ├── MsoAnimFilterEffectSubtype.cs │ │ ├── MsoAnimFilterEffectType.cs │ │ ├── MsoAnimProperty.cs │ │ ├── MsoAnimTextUnitEffect.cs │ │ ├── MsoAnimTriggerType.cs │ │ ├── MsoAnimType.cs │ │ ├── MsoAnimateByLevel.cs │ │ ├── MsoClickState.cs │ │ ├── PpActionType.cs │ │ ├── PpAdvanceMode.cs │ │ ├── PpAfterEffect.cs │ │ ├── PpAlertButton.cs │ │ ├── PpAlertIcon.cs │ │ ├── PpAlertLevel.cs │ │ ├── PpAlertType.cs │ │ ├── PpArrangeStyle.cs │ │ ├── PpAutoSize.cs │ │ ├── PpBaselineAlignment.cs │ │ ├── PpBorderType.cs │ │ ├── PpBulletType.cs │ │ ├── PpChangeCase.cs │ │ ├── PpChartUnitEffect.cs │ │ ├── PpCheckInVersionType.cs │ │ ├── PpColorSchemeIndex.cs │ │ ├── PpDateTimeFormat.cs │ │ ├── PpDialogFontStyle.cs │ │ ├── PpDialogMode.cs │ │ ├── PpDialogPositioning.cs │ │ ├── PpDialogStyle.cs │ │ ├── PpDirection.cs │ │ ├── PpEntryEffect.cs │ │ ├── PpExportMode.cs │ │ ├── PpFarEastLineBreakLevel.cs │ │ ├── PpFileDialogType.cs │ │ ├── PpFileDialogView.cs │ │ ├── PpFixedFormatIntent.cs │ │ ├── PpFixedFormatType.cs │ │ ├── PpFollowColors.cs │ │ ├── PpFrameColors.cs │ │ ├── PpGuideOrientation.cs │ │ ├── PpHTMLVersion.cs │ │ ├── PpIndentControl.cs │ │ ├── PpListBoxAbbreviationStyle.cs │ │ ├── PpListBoxSelectionStyle.cs │ │ ├── PpMarkerType.cs │ │ ├── PpMediaTaskStatus.cs │ │ ├── PpMediaType.cs │ │ ├── PpMouseActivation.cs │ │ ├── PpNumberedBulletStyle.cs │ │ ├── PpParagraphAlignment.cs │ │ ├── PpPasteDataType.cs │ │ ├── PpPlaceholderType.cs │ │ ├── PpPlayerState.cs │ │ ├── PpPrintColorType.cs │ │ ├── PpPrintHandoutOrder.cs │ │ ├── PpPrintOutputType.cs │ │ ├── PpPrintRangeType.cs │ │ ├── PpProtectedViewCloseReason.cs │ │ ├── PpPublishSourceType.cs │ │ ├── PpRemoveDocInfoType.cs │ │ ├── PpResampleMediaProfile.cs │ │ ├── PpRevisionInfo.cs │ │ ├── PpSaveAsFileType.cs │ │ ├── PpScrollBarStyle.cs │ │ ├── PpSelectionType.cs │ │ ├── PpShapeFormat.cs │ │ ├── PpSlideLayout.cs │ │ ├── PpSlideShowAdvanceMode.cs │ │ ├── PpSlideShowPointerType.cs │ │ ├── PpSlideShowRangeType.cs │ │ ├── PpSlideShowState.cs │ │ ├── PpSlideShowType.cs │ │ ├── PpSlideSizeType.cs │ │ ├── PpSoundEffectType.cs │ │ ├── PpSoundFormatType.cs │ │ ├── PpTabStopType.cs │ │ ├── PpTextLevelEffect.cs │ │ ├── PpTextStyleType.cs │ │ ├── PpTextUnitEffect.cs │ │ ├── PpTransitionSpeed.cs │ │ ├── PpUpdateOption.cs │ │ ├── PpViewType.cs │ │ ├── PpWindowState.cs │ │ ├── XlAxisCrosses.cs │ │ ├── XlAxisGroup.cs │ │ ├── XlAxisType.cs │ │ ├── XlBackground.cs │ │ ├── XlBarShape.cs │ │ ├── XlBorderWeight.cs │ │ ├── XlCategoryLabelLevel.cs │ │ ├── XlCategoryType.cs │ │ ├── XlChartElementPosition.cs │ │ ├── XlChartGallery.cs │ │ ├── XlChartItem.cs │ │ ├── XlChartPicturePlacement.cs │ │ ├── XlChartPictureType.cs │ │ ├── XlChartSplitType.cs │ │ ├── XlColorIndex.cs │ │ ├── XlConstants.cs │ │ ├── XlCopyPictureFormat.cs │ │ ├── XlDataLabelPosition.cs │ │ ├── XlDataLabelSeparator.cs │ │ ├── XlDataLabelsType.cs │ │ ├── XlDisplayBlanksAs.cs │ │ ├── XlDisplayUnit.cs │ │ ├── XlEndStyleCap.cs │ │ ├── XlErrorBarDirection.cs │ │ ├── XlErrorBarInclude.cs │ │ ├── XlErrorBarType.cs │ │ ├── XlHAlign.cs │ │ ├── XlLegendPosition.cs │ │ ├── XlLineStyle.cs │ │ ├── XlMarkerStyle.cs │ │ ├── XlOrientation.cs │ │ ├── XlPattern.cs │ │ ├── XlPictureAppearance.cs │ │ ├── XlPieSliceIndex.cs │ │ ├── XlPieSliceLocation.cs │ │ ├── XlPivotFieldOrientation.cs │ │ ├── XlReadingOrder.cs │ │ ├── XlRgbColor.cs │ │ ├── XlRowCol.cs │ │ ├── XlScaleType.cs │ │ ├── XlSeriesNameLevel.cs │ │ ├── XlSizeRepresents.cs │ │ ├── XlTickLabelOrientation.cs │ │ ├── XlTickLabelPosition.cs │ │ ├── XlTickMark.cs │ │ ├── XlTimeUnit.cs │ │ ├── XlTrendlineType.cs │ │ ├── XlUnderlineStyle.cs │ │ └── XlVAlign.cs │ ├── EventInterfaces │ │ ├── EApplication.cs │ │ ├── MasterEvents.cs │ │ ├── OCXExtenderEvents.cs │ │ ├── PresEvents.cs │ │ └── SldEvents.cs │ ├── Interfaces │ │ ├── MouseDownHandler.cs │ │ └── MouseTracker.cs │ ├── Modules │ │ └── Global.cs │ ├── PowerPointApi.csproj │ ├── Tools │ │ ├── COMAddin.cs │ │ ├── ITaskPane.cs │ │ └── Utils │ │ │ ├── ApplicationUtils.cs │ │ │ ├── CommonUtils.cs │ │ │ ├── DocumentFormat.cs │ │ │ └── FileUtils.cs │ └── Utils │ │ └── ProjectInfo.cs ├── TestAddin │ ├── Addin.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RibbonUI.xml │ ├── TestAddin.csproj │ ├── TestPane.Designer.cs │ └── TestPane.cs ├── VBIDE │ ├── AssemblyInfo.cs │ ├── Classes │ │ ├── Addins.cs │ │ ├── CodeModule.cs │ │ ├── CodePane.cs │ │ ├── CodePanes.cs │ │ ├── CommandBarEvents.cs │ │ ├── Component.cs │ │ ├── Components.cs │ │ ├── LinkedWindows.cs │ │ ├── ProjectTemplate.cs │ │ ├── Properties.cs │ │ ├── References.cs │ │ ├── ReferencesEvents.cs │ │ ├── VBComponent.cs │ │ ├── VBComponents.cs │ │ ├── VBProject.cs │ │ ├── VBProjects.cs │ │ └── Windows.cs │ ├── DispatchInterfaces │ │ ├── AddIn.cs │ │ ├── Application.cs │ │ ├── Events.cs │ │ ├── Property.cs │ │ ├── Reference.cs │ │ ├── SelectedComponents.cs │ │ ├── VBE.cs │ │ ├── Window.cs │ │ ├── _AddIns.cs │ │ ├── _CodeModule.cs │ │ ├── _CodePane.cs │ │ ├── _CodePanes.cs │ │ ├── _Component.cs │ │ ├── _Components.cs │ │ ├── _LinkedWindows.cs │ │ ├── _ProjectTemplate.cs │ │ ├── _Properties.cs │ │ ├── _References.cs │ │ ├── _VBComponent.cs │ │ ├── _VBComponent_Old.cs │ │ ├── _VBComponents.cs │ │ ├── _VBComponents_Old.cs │ │ ├── _VBProject.cs │ │ ├── _VBProject_Old.cs │ │ ├── _VBProjects.cs │ │ ├── _VBProjects_Old.cs │ │ ├── _Windows.cs │ │ ├── _Windows_old.cs │ │ ├── _dispVBComponentsEvents.cs │ │ └── _dispVBProjectsEvents.cs │ ├── Enums │ │ ├── vbextFileTypes.cs │ │ ├── vbext_CodePaneview.cs │ │ ├── vbext_ComponentType.cs │ │ ├── vbext_ProcKind.cs │ │ ├── vbext_ProjectProtection.cs │ │ ├── vbext_ProjectType.cs │ │ ├── vbext_RefKind.cs │ │ ├── vbext_VBAMode.cs │ │ ├── vbext_WindowState.cs │ │ └── vbext_WindowType.cs │ ├── EventInterfaces │ │ ├── _dispCommandBarControlEvents.cs │ │ ├── _dispReferencesEvents.cs │ │ └── _dispReferences_Events.cs │ ├── Interfaces │ │ ├── _CommandBarControlEvents.cs │ │ ├── _ReferencesEvents.cs │ │ ├── _VBComponentsEvents.cs │ │ └── _VBProjectsEvents.cs │ ├── Utils │ │ └── ProjectInfo.cs │ └── VBIDEApi.csproj ├── Visio │ ├── AssemblyInfo.cs │ ├── Classes │ │ ├── AccelItem.cs │ │ ├── AccelItems.cs │ │ ├── AccelTable.cs │ │ ├── AccelTables.cs │ │ ├── Addon.cs │ │ ├── Addons.cs │ │ ├── Application.cs │ │ ├── ApplicationSettings.cs │ │ ├── Cell.cs │ │ ├── Characters.cs │ │ ├── CoauthMergeEvent.cs │ │ ├── Color.cs │ │ ├── Colors.cs │ │ ├── Comment.cs │ │ ├── Comments.cs │ │ ├── Connect.cs │ │ ├── Connects.cs │ │ ├── ContainerProperties.cs │ │ ├── Curve.cs │ │ ├── DataColumn.cs │ │ ├── DataColumns.cs │ │ ├── DataConnection.cs │ │ ├── DataRecordset.cs │ │ ├── DataRecordsetChangedEvent.cs │ │ ├── DataRecordsets.cs │ │ ├── Document.cs │ │ ├── Documents.cs │ │ ├── Event.cs │ │ ├── EventList.cs │ │ ├── Extender.cs │ │ ├── Font.cs │ │ ├── Fonts.cs │ │ ├── GraphicItem.cs │ │ ├── GraphicItems.cs │ │ ├── Hyperlink.cs │ │ ├── Hyperlinks.cs │ │ ├── InvisibleApp.cs │ │ ├── KeyboardEvent.cs │ │ ├── Layer.cs │ │ ├── Layers.cs │ │ ├── MSGWrap.cs │ │ ├── Master.cs │ │ ├── MasterShortcut.cs │ │ ├── MasterShortcuts.cs │ │ ├── Masters.cs │ │ ├── Menu.cs │ │ ├── MenuItem.cs │ │ ├── MenuItems.cs │ │ ├── MenuSet.cs │ │ ├── MenuSets.cs │ │ ├── Menus.cs │ │ ├── MouseEvent.cs │ │ ├── MovedSelectionEvent.cs │ │ ├── OLEObject.cs │ │ ├── OLEObjects.cs │ │ ├── Page.cs │ │ ├── Pages.cs │ │ ├── Path.cs │ │ ├── Paths.cs │ │ ├── RelatedShapePairEvent.cs │ │ ├── ReplaceShapesEvent.cs │ │ ├── Row.cs │ │ ├── Section.cs │ │ ├── Selection.cs │ │ ├── ServerPublishOptions.cs │ │ ├── Shape.cs │ │ ├── Shapes.cs │ │ ├── StatusBar.cs │ │ ├── StatusBarItem.cs │ │ ├── StatusBarItems.cs │ │ ├── StatusBars.cs │ │ ├── Style.cs │ │ ├── Styles.cs │ │ ├── Toolbar.cs │ │ ├── ToolbarItem.cs │ │ ├── ToolbarItems.cs │ │ ├── ToolbarSet.cs │ │ ├── ToolbarSets.cs │ │ ├── Toolbars.cs │ │ ├── UIObject.cs │ │ ├── Validation.cs │ │ ├── ValidationIssue.cs │ │ ├── ValidationIssues.cs │ │ ├── ValidationRule.cs │ │ ├── ValidationRuleSet.cs │ │ ├── ValidationRuleSets.cs │ │ ├── ValidationRules.cs │ │ ├── Window.cs │ │ └── Windows.cs │ ├── DispatchInterfaces │ │ ├── IVAccelItem.cs │ │ ├── IVAccelItems.cs │ │ ├── IVAccelTable.cs │ │ ├── IVAccelTables.cs │ │ ├── IVAddon.cs │ │ ├── IVAddons.cs │ │ ├── IVAmbients.cs │ │ ├── IVApplication.cs │ │ ├── IVApplicationSettings.cs │ │ ├── IVBUndoManager.cs │ │ ├── IVBUndoUnit.cs │ │ ├── IVCell.cs │ │ ├── IVCharacters.cs │ │ ├── IVCoauthMergeEvent.cs │ │ ├── IVColor.cs │ │ ├── IVColors.cs │ │ ├── IVComment.cs │ │ ├── IVComments.cs │ │ ├── IVConnect.cs │ │ ├── IVConnects.cs │ │ ├── IVContainerProperties.cs │ │ ├── IVCurve.cs │ │ ├── IVDataColumn.cs │ │ ├── IVDataColumns.cs │ │ ├── IVDataConnection.cs │ │ ├── IVDataRecordset.cs │ │ ├── IVDataRecordsetChangedEvent.cs │ │ ├── IVDataRecordsets.cs │ │ ├── IVDispExtender.cs │ │ ├── IVDocument.cs │ │ ├── IVDocuments.cs │ │ ├── IVEvent.cs │ │ ├── IVEventList.cs │ │ ├── IVExtender.cs │ │ ├── IVFont.cs │ │ ├── IVFonts.cs │ │ ├── IVGlobal.cs │ │ ├── IVGraphicItem.cs │ │ ├── IVGraphicItems.cs │ │ ├── IVHyperlink.cs │ │ ├── IVHyperlinks.cs │ │ ├── IVLayer.cs │ │ ├── IVLayers.cs │ │ ├── IVMSGWrap.cs │ │ ├── IVMaster.cs │ │ ├── IVMasterShortcut.cs │ │ ├── IVMasterShortcuts.cs │ │ ├── IVMasters.cs │ │ ├── IVMenu.cs │ │ ├── IVMenuItem.cs │ │ ├── IVMenuItems.cs │ │ ├── IVMenuSet.cs │ │ ├── IVMenuSets.cs │ │ ├── IVMenus.cs │ │ ├── IVMovedSelectionEvent.cs │ │ ├── IVOLEObject.cs │ │ ├── IVOLEObjects.cs │ │ ├── IVPage.cs │ │ ├── IVPages.cs │ │ ├── IVPath.cs │ │ ├── IVPaths.cs │ │ ├── IVRelatedShapePairEvent.cs │ │ ├── IVReplaceShapesEvent.cs │ │ ├── IVRow.cs │ │ ├── IVSection.cs │ │ ├── IVSelection.cs │ │ ├── IVServerPublishOptions.cs │ │ ├── IVShape.cs │ │ ├── IVShapes.cs │ │ ├── IVStatusBar.cs │ │ ├── IVStatusBarItem.cs │ │ ├── IVStatusBarItems.cs │ │ ├── IVStatusBars.cs │ │ ├── IVStyle.cs │ │ ├── IVStyles.cs │ │ ├── IVToolbar.cs │ │ ├── IVToolbarItem.cs │ │ ├── IVToolbarItems.cs │ │ ├── IVToolbarSet.cs │ │ ├── IVToolbarSets.cs │ │ ├── IVToolbars.cs │ │ ├── IVUIObject.cs │ │ ├── IVValidation.cs │ │ ├── IVValidationIssue.cs │ │ ├── IVValidationIssues.cs │ │ ├── IVValidationRule.cs │ │ ├── IVValidationRuleSet.cs │ │ ├── IVValidationRuleSets.cs │ │ ├── IVValidationRules.cs │ │ ├── IVWindow.cs │ │ ├── IVWindows.cs │ │ └── IVisEventProc.cs │ ├── Enums │ │ ├── VisArcSweepFlags.cs │ │ ├── VisAutoConnectDir.cs │ │ ├── VisAutoLinkBehaviors.cs │ │ ├── VisAutoLinkFieldTypes.cs │ │ ├── VisBoundingBoxArgs.cs │ │ ├── VisBuiltInStencilTypes.cs │ │ ├── VisCellError.cs │ │ ├── VisCellIndices.cs │ │ ├── VisCellVals.cs │ │ ├── VisCenterViewFlags.cs │ │ ├── VisCharsBias.cs │ │ ├── VisConnectedShapesFlags.cs │ │ ├── VisConnectorEnds.cs │ │ ├── VisContainerAutoResize.cs │ │ ├── VisContainerFlags.cs │ │ ├── VisContainerFormatType.cs │ │ ├── VisContainerMemberState.cs │ │ ├── VisContainerNested.cs │ │ ├── VisContainerTypes.cs │ │ ├── VisCutCopyPasteCodes.cs │ │ ├── VisDataColumnProperties.cs │ │ ├── VisDataRecordsetAddOptions.cs │ │ ├── VisDefaultColors.cs │ │ ├── VisDefaultSaveFormats.cs │ │ ├── VisDeleteFlags.cs │ │ ├── VisDiagramServices.cs │ │ ├── VisDistributeTypes.cs │ │ ├── VisDocCleanActions.cs │ │ ├── VisDocCleanTargets.cs │ │ ├── VisDocExIntent.cs │ │ ├── VisDocModeArgs.cs │ │ ├── VisDocVersions.cs │ │ ├── VisDocumentTypes.cs │ │ ├── VisDrawRegionFlags.cs │ │ ├── VisDrawSplineFlags.cs │ │ ├── VisEdition.cs │ │ ├── VisEventCodes.cs │ │ ├── VisExistsFlags.cs │ │ ├── VisFieldCategories.cs │ │ ├── VisFieldCodes.cs │ │ ├── VisFieldFormats.cs │ │ ├── VisFilterActions.cs │ │ ├── VisFixedFormatTypes.cs │ │ ├── VisFlipDirection.cs │ │ ├── VisFlipTypes.cs │ │ ├── VisFontAttributes.cs │ │ ├── VisFromParts.cs │ │ ├── VisGeomFlags.cs │ │ ├── VisGetSetArgs.cs │ │ ├── VisGlueSettings.cs │ │ ├── VisGluedShapesFlags.cs │ │ ├── VisGraphicField.cs │ │ ├── VisGraphicItemTypes.cs │ │ ├── VisGraphicPositionHorizontal.cs │ │ ├── VisGraphicPositionVertical.cs │ │ ├── VisGuideTypes.cs │ │ ├── VisHitTestResults.cs │ │ ├── VisHorizontalAlignTypes.cs │ │ ├── VisInsertObjArgs.cs │ │ ├── VisKeyButtonFlags.cs │ │ ├── VisLangFlags.cs │ │ ├── VisLayoutDirection.cs │ │ ├── VisLayoutHorzAlignType.cs │ │ ├── VisLayoutIncrementalType.cs │ │ ├── VisLayoutVertAlignType.cs │ │ ├── VisLegendFlags.cs │ │ ├── VisLinkReplaceBehavior.cs │ │ ├── VisListAlignment.cs │ │ ├── VisListDirection.cs │ │ ├── VisMasterProperties.cs │ │ ├── VisMasterTypes.cs │ │ ├── VisMeasurementSystem.cs │ │ ├── VisMemberAddOptions.cs │ │ ├── VisMouseMoveDragStates.cs │ │ ├── VisObjectTypes.cs │ │ ├── VisOnComponentEnterCodes.cs │ │ ├── VisOpenSaveArgs.cs │ │ ├── VisPageAndMasterIDs.cs │ │ ├── VisPageSizingBehaviors.cs │ │ ├── VisPageTypes.cs │ │ ├── VisPaperSizes.cs │ │ ├── VisPasteSpecialCodes.cs │ │ ├── VisPrimaryKeySettings.cs │ │ ├── VisPrintOutRange.cs │ │ ├── VisProtection.cs │ │ ├── VisPublishDataRecordsets.cs │ │ ├── VisPublishPages.cs │ │ ├── VisQuickStyleColors.cs │ │ ├── VisQuickStyleMatrixIndices.cs │ │ ├── VisRasterExportColorFormat.cs │ │ ├── VisRasterExportColorReduction.cs │ │ ├── VisRasterExportDataCompression.cs │ │ ├── VisRasterExportDataFormat.cs │ │ ├── VisRasterExportFlip.cs │ │ ├── VisRasterExportOperation.cs │ │ ├── VisRasterExportResolution.cs │ │ ├── VisRasterExportResolutionUnits.cs │ │ ├── VisRasterExportRotation.cs │ │ ├── VisRasterExportSize.cs │ │ ├── VisRasterExportSizeUnits.cs │ │ ├── VisRefreshSettings.cs │ │ ├── VisRegionalUIOptions.cs │ │ ├── VisRemoveHiddenInfoItems.cs │ │ ├── VisReplaceFlags.cs │ │ ├── VisResizeDirection.cs │ │ ├── VisRibbonXModes.cs │ │ ├── VisRoleSelectionTypes.cs │ │ ├── VisRotationTypes.cs │ │ ├── VisRoundFlags.cs │ │ ├── VisRowIndices.cs │ │ ├── VisRowTags.cs │ │ ├── VisRuleSetFlags.cs │ │ ├── VisRuleTargets.cs │ │ ├── VisRunTypes.cs │ │ ├── VisSVGExportFormat.cs │ │ ├── VisSavePreviewMode.cs │ │ ├── VisScrollbarStates.cs │ │ ├── VisSectionIndices.cs │ │ ├── VisSelectArgs.cs │ │ ├── VisSelectItemStatus.cs │ │ ├── VisSelectMode.cs │ │ ├── VisSelectionTypes.cs │ │ ├── VisShapeIDs.cs │ │ ├── VisShapeTypes.cs │ │ ├── VisSnapExtensions.cs │ │ ├── VisSnapSettings.cs │ │ ├── VisSpatialRelationCodes.cs │ │ ├── VisSpatialRelationFlags.cs │ │ ├── VisStatCodes.cs │ │ ├── VisTextDisplayQualityTypes.cs │ │ ├── VisThemeColors.cs │ │ ├── VisThemeEffects.cs │ │ ├── VisThemeTypes.cs │ │ ├── VisToParts.cs │ │ ├── VisToolbarFlavors.cs │ │ ├── VisTraceFlags.cs │ │ ├── VisTypeSelectionTypes.cs │ │ ├── VisUIBarPosition.cs │ │ ├── VisUIBarProtection.cs │ │ ├── VisUIBarRow.cs │ │ ├── VisUIButtonState.cs │ │ ├── VisUIButtonStyle.cs │ │ ├── VisUICmds.cs │ │ ├── VisUICtrlAtts.cs │ │ ├── VisUICtrlIDs.cs │ │ ├── VisUICtrlTypes.cs │ │ ├── VisUIIconIDs.cs │ │ ├── VisUIMenuAnimation.cs │ │ ├── VisUIObjSets.cs │ │ ├── VisUISpacingTypes.cs │ │ ├── VisUIStringIDs.cs │ │ ├── VisUniqueIDArgs.cs │ │ ├── VisUnitCodes.cs │ │ ├── VisValidationFlags.cs │ │ ├── VisVerticalAlignTypes.cs │ │ ├── VisWinTypes.cs │ │ ├── VisWindowArrange.cs │ │ ├── VisWindowFit.cs │ │ ├── VisWindowScrollX.cs │ │ ├── VisWindowScrollY.cs │ │ ├── VisWindowStates.cs │ │ └── VisZoomBehavior.cs │ ├── EventInterfaces │ │ ├── EApplication.cs │ │ ├── ECell.cs │ │ ├── ECharacters.cs │ │ ├── EDataRecordset.cs │ │ ├── EDataRecordsets.cs │ │ ├── EDocument.cs │ │ ├── EDocuments.cs │ │ ├── EMaster.cs │ │ ├── EMasters.cs │ │ ├── EPage.cs │ │ ├── EPages.cs │ │ ├── ERow.cs │ │ ├── ESection.cs │ │ ├── EShape.cs │ │ ├── EStyle.cs │ │ ├── EStyles.cs │ │ ├── EWindow.cs │ │ └── EWindows.cs │ ├── Interfaces │ │ ├── IEnumVAccelItem.cs │ │ ├── IEnumVAccelTable.cs │ │ ├── IEnumVMenu.cs │ │ ├── IEnumVMenuItem.cs │ │ ├── IEnumVMenuSet.cs │ │ ├── IEnumVStatusBar.cs │ │ ├── IEnumVStatusBarItem.cs │ │ ├── IEnumVToolbar.cs │ │ ├── IEnumVToolbarItem.cs │ │ ├── IEnumVToolbarSet.cs │ │ ├── IVClientSite.cs │ │ ├── IVInvisibleApp.cs │ │ ├── IVKeyboardEvent.cs │ │ ├── IVMouseEvent.cs │ │ ├── IVisLibOcxSupport.cs │ │ ├── LPSERVERPUBLISHOPTIONS.cs │ │ ├── LPVISIOACCELITEM.cs │ │ ├── LPVISIOACCELITEMS.cs │ │ ├── LPVISIOACCELTABLE.cs │ │ ├── LPVISIOACCELTABLES.cs │ │ ├── LPVISIOADDON.cs │ │ ├── LPVISIOADDONS.cs │ │ ├── LPVISIOAPPLICATION.cs │ │ ├── LPVISIOAPPSETTINGS.cs │ │ ├── LPVISIOCELL.cs │ │ ├── LPVISIOCHARS.cs │ │ ├── LPVISIOCOAUTHMERGEEVENT.cs │ │ ├── LPVISIOCOLOR.cs │ │ ├── LPVISIOCOLORS.cs │ │ ├── LPVISIOCONNECT.cs │ │ ├── LPVISIOCONNECTS.cs │ │ ├── LPVISIOCONTAINERPROPERTIES.cs │ │ ├── LPVISIOCURVE.cs │ │ ├── LPVISIODATACOLUMN.cs │ │ ├── LPVISIODATACOLUMNS.cs │ │ ├── LPVISIODATACONNECTION.cs │ │ ├── LPVISIODATARECORDSET.cs │ │ ├── LPVISIODATARECORDSETCHANGEDEVENT.cs │ │ ├── LPVISIODATARECORDSETS.cs │ │ ├── LPVISIODOCUMENT.cs │ │ ├── LPVISIODOCUMENTS.cs │ │ ├── LPVISIOENUMVACCELITEM.cs │ │ ├── LPVISIOENUMVACCELTABLE.cs │ │ ├── LPVISIOENUMVMENU.cs │ │ ├── LPVISIOENUMVMENUITEM.cs │ │ ├── LPVISIOENUMVMENUSET.cs │ │ ├── LPVISIOENUMVSTATUSBAR.cs │ │ ├── LPVISIOENUMVSTATUSBARITEM.cs │ │ ├── LPVISIOENUMVTOOLBAR.cs │ │ ├── LPVISIOENUMVTOOLBARITEM.cs │ │ ├── LPVISIOENUMVTOOLBARSET.cs │ │ ├── LPVISIOEVENT.cs │ │ ├── LPVISIOEVENTS.cs │ │ ├── LPVISIOFONT.cs │ │ ├── LPVISIOFONTS.cs │ │ ├── LPVISIOGRAPHICITEM.cs │ │ ├── LPVISIOGRAPHICITEMS.cs │ │ ├── LPVISIOHYPERLINK.cs │ │ ├── LPVISIOHYPERLINKS.cs │ │ ├── LPVISIOLAYER.cs │ │ ├── LPVISIOLAYERS.cs │ │ ├── LPVISIOMASTER.cs │ │ ├── LPVISIOMASTERS.cs │ │ ├── LPVISIOMASTERSHORTCUT.cs │ │ ├── LPVISIOMASTERSHORTCUTS.cs │ │ ├── LPVISIOMENU.cs │ │ ├── LPVISIOMENUITEM.cs │ │ ├── LPVISIOMENUITEMS.cs │ │ ├── LPVISIOMENUS.cs │ │ ├── LPVISIOMENUSET.cs │ │ ├── LPVISIOMENUSETS.cs │ │ ├── LPVISIOMOVEDSELECTIONEVENT.cs │ │ ├── LPVISIOMSGWRAP.cs │ │ ├── LPVISIOOBJECT.cs │ │ ├── LPVISIOOBJECTS.cs │ │ ├── LPVISIOPAGE.cs │ │ ├── LPVISIOPAGES.cs │ │ ├── LPVISIOPATH.cs │ │ ├── LPVISIOPATHS.cs │ │ ├── LPVISIORELATEDSHAPEPAIREVENT.cs │ │ ├── LPVISIOREPLACESHAPESEVENT.cs │ │ ├── LPVISIOROW.cs │ │ ├── LPVISIOSECTION.cs │ │ ├── LPVISIOSELECTION.cs │ │ ├── LPVISIOSHAPE.cs │ │ ├── LPVISIOSHAPES.cs │ │ ├── LPVISIOSTATUSBAR.cs │ │ ├── LPVISIOSTATUSBARITEM.cs │ │ ├── LPVISIOSTATUSBARITEMS.cs │ │ ├── LPVISIOSTATUSBARS.cs │ │ ├── LPVISIOSTYLE.cs │ │ ├── LPVISIOSTYLES.cs │ │ ├── LPVISIOTOOLBAR.cs │ │ ├── LPVISIOTOOLBARITEM.cs │ │ ├── LPVISIOTOOLBARITEMS.cs │ │ ├── LPVISIOTOOLBARS.cs │ │ ├── LPVISIOTOOLBARSET.cs │ │ ├── LPVISIOTOOLBARSETS.cs │ │ ├── LPVISIOUIOBJECT.cs │ │ ├── LPVISIOVALIDATION.cs │ │ ├── LPVISIOVALIDATIONISSUE.cs │ │ ├── LPVISIOVALIDATIONISSUES.cs │ │ ├── LPVISIOVALIDATIONRULE.cs │ │ ├── LPVISIOVALIDATIONRULES.cs │ │ ├── LPVISIOVALIDATIONRULESET.cs │ │ ├── LPVISIOVALIDATIONRULESETS.cs │ │ ├── LPVISIOWINDOW.cs │ │ └── LPVISIOWINDOWS.cs │ ├── Modules │ │ └── Global.cs │ ├── Tools │ │ └── COMAddin.cs │ ├── Utils │ │ └── ProjectInfo.cs │ └── VisioApi.csproj └── Word │ ├── AssemblyInfo.cs │ ├── Classes │ ├── Application.cs │ ├── Document.cs │ ├── Font.cs │ ├── LetterContent.cs │ ├── OLEControl.cs │ └── ParagraphFormat.cs │ ├── DispatchInterfaces │ ├── AddIn.cs │ ├── AddIns.cs │ ├── Adjustments.cs │ ├── ApplicationEvents.cs │ ├── AutoCaption.cs │ ├── AutoCaptions.cs │ ├── AutoCorrect.cs │ ├── AutoCorrectEntries.cs │ ├── AutoCorrectEntry.cs │ ├── AutoTextEntries.cs │ ├── AutoTextEntry.cs │ ├── Axes.cs │ ├── Axis.cs │ ├── AxisTitle.cs │ ├── Bibliography.cs │ ├── Bookmark.cs │ ├── Bookmarks.cs │ ├── Border.cs │ ├── Borders.cs │ ├── Break.cs │ ├── Breaks.cs │ ├── Broadcast.cs │ ├── Browser.cs │ ├── BuildingBlock.cs │ ├── BuildingBlockEntries.cs │ ├── BuildingBlockType.cs │ ├── BuildingBlockTypes.cs │ ├── BuildingBlocks.cs │ ├── CalloutFormat.cs │ ├── CanvasShapes.cs │ ├── CaptionLabel.cs │ ├── CaptionLabels.cs │ ├── Categories.cs │ ├── Category.cs │ ├── CategoryCollection.cs │ ├── Cell.cs │ ├── Cells.cs │ ├── Characters.cs │ ├── Chart.cs │ ├── ChartArea.cs │ ├── ChartBorder.cs │ ├── ChartCategory.cs │ ├── ChartCharacters.cs │ ├── ChartColorFormat.cs │ ├── ChartData.cs │ ├── ChartFillFormat.cs │ ├── ChartFont.cs │ ├── ChartFormat.cs │ ├── ChartGroup.cs │ ├── ChartGroups.cs │ ├── ChartTitle.cs │ ├── CheckBox.cs │ ├── CoAuthLock.cs │ ├── CoAuthLocks.cs │ ├── CoAuthUpdate.cs │ ├── CoAuthUpdates.cs │ ├── CoAuthor.cs │ ├── CoAuthoring.cs │ ├── CoAuthors.cs │ ├── ColorFormat.cs │ ├── Column.cs │ ├── Columns.cs │ ├── Comment.cs │ ├── Comments.cs │ ├── ConditionalStyle.cs │ ├── Conflict.cs │ ├── Conflicts.cs │ ├── ConnectorFormat.cs │ ├── ContentControl.cs │ ├── ContentControlListEntries.cs │ ├── ContentControlListEntry.cs │ ├── ContentControls.cs │ ├── Corners.cs │ ├── CustomLabel.cs │ ├── CustomLabels.cs │ ├── CustomProperties.cs │ ├── CustomProperty.cs │ ├── DataLabel.cs │ ├── DataLabels.cs │ ├── DataTable.cs │ ├── DefaultWebOptions.cs │ ├── Diagram.cs │ ├── DiagramNode.cs │ ├── DiagramNodeChildren.cs │ ├── DiagramNodes.cs │ ├── Dialog.cs │ ├── Dialogs.cs │ ├── Dictionaries.cs │ ├── Dictionary.cs │ ├── DisplayUnitLabel.cs │ ├── Documents.cs │ ├── DownBars.cs │ ├── DropCap.cs │ ├── DropDown.cs │ ├── DropLines.cs │ ├── Editor.cs │ ├── Editors.cs │ ├── Email.cs │ ├── EmailAuthor.cs │ ├── EmailOptions.cs │ ├── EmailSignature.cs │ ├── EmailSignatureEntries.cs │ ├── EmailSignatureEntry.cs │ ├── Endnote.cs │ ├── EndnoteOptions.cs │ ├── Endnotes.cs │ ├── Envelope.cs │ ├── ErrorBars.cs │ ├── Field.cs │ ├── Fields.cs │ ├── FileConverter.cs │ ├── FileConverters.cs │ ├── FillFormat.cs │ ├── Find.cs │ ├── FirstLetterException.cs │ ├── FirstLetterExceptions.cs │ ├── Floor.cs │ ├── FontNames.cs │ ├── Footnote.cs │ ├── FootnoteOptions.cs │ ├── Footnotes.cs │ ├── FormField.cs │ ├── FormFields.cs │ ├── Frame.cs │ ├── Frames.cs │ ├── Frameset.cs │ ├── FreeformBuilder.cs │ ├── FullSeriesCollection.cs │ ├── GlowFormat.cs │ ├── Gridlines.cs │ ├── GroupShapes.cs │ ├── HTMLDivision.cs │ ├── HTMLDivisions.cs │ ├── HangulAndAlphabetException.cs │ ├── HangulAndAlphabetExceptions.cs │ ├── HangulHanjaConversionDictionaries.cs │ ├── HeaderFooter.cs │ ├── HeadersFooters.cs │ ├── HeadingStyle.cs │ ├── HeadingStyles.cs │ ├── HiLoLines.cs │ ├── HorizontalLineFormat.cs │ ├── Hyperlink.cs │ ├── Hyperlinks.cs │ ├── IApplicationEvents.cs │ ├── IApplicationEvents2.cs │ ├── IApplicationEvents3.cs │ ├── IApplicationEvents4.cs │ ├── Index.cs │ ├── Indexes.cs │ ├── InlineShape.cs │ ├── InlineShapes.cs │ ├── Interior.cs │ ├── KeyBinding.cs │ ├── KeyBindings.cs │ ├── KeysBoundTo.cs │ ├── Language.cs │ ├── Languages.cs │ ├── LeaderLines.cs │ ├── Legend.cs │ ├── LegendEntries.cs │ ├── LegendEntry.cs │ ├── LegendKey.cs │ ├── Line.cs │ ├── LineFormat.cs │ ├── LineNumbering.cs │ ├── Lines.cs │ ├── LinkFormat.cs │ ├── List.cs │ ├── ListEntries.cs │ ├── ListEntry.cs │ ├── ListFormat.cs │ ├── ListGalleries.cs │ ├── ListGallery.cs │ ├── ListLevel.cs │ ├── ListLevels.cs │ ├── ListParagraphs.cs │ ├── ListTemplate.cs │ ├── ListTemplates.cs │ ├── Lists.cs │ ├── MailMerge.cs │ ├── MailMergeDataField.cs │ ├── MailMergeDataFields.cs │ ├── MailMergeDataSource.cs │ ├── MailMergeField.cs │ ├── MailMergeFieldName.cs │ ├── MailMergeFieldNames.cs │ ├── MailMergeFields.cs │ ├── MailMessage.cs │ ├── Mailer.cs │ ├── MailingLabel.cs │ ├── MappedDataField.cs │ ├── MappedDataFields.cs │ ├── OLEFormat.cs │ ├── OMath.cs │ ├── OMathAcc.cs │ ├── OMathArgs.cs │ ├── OMathAutoCorrect.cs │ ├── OMathAutoCorrectEntries.cs │ ├── OMathAutoCorrectEntry.cs │ ├── OMathBar.cs │ ├── OMathBorderBox.cs │ ├── OMathBox.cs │ ├── OMathBreak.cs │ ├── OMathBreaks.cs │ ├── OMathDelim.cs │ ├── OMathEqArray.cs │ ├── OMathFrac.cs │ ├── OMathFunc.cs │ ├── OMathFunction.cs │ ├── OMathFunctions.cs │ ├── OMathGroupChar.cs │ ├── OMathLimLow.cs │ ├── OMathLimUpp.cs │ ├── OMathMat.cs │ ├── OMathMatCol.cs │ ├── OMathMatCols.cs │ ├── OMathMatRow.cs │ ├── OMathMatRows.cs │ ├── OMathNary.cs │ ├── OMathPhantom.cs │ ├── OMathRad.cs │ ├── OMathRecognizedFunction.cs │ ├── OMathRecognizedFunctions.cs │ ├── OMathScrPre.cs │ ├── OMathScrSub.cs │ ├── OMathScrSubSup.cs │ ├── OMathScrSup.cs │ ├── OMaths.cs │ ├── Options.cs │ ├── OtherCorrectionsException.cs │ ├── OtherCorrectionsExceptions.cs │ ├── Page.cs │ ├── PageNumber.cs │ ├── PageNumbers.cs │ ├── PageSetup.cs │ ├── Pages.cs │ ├── Pane.cs │ ├── Panes.cs │ ├── Paragraph.cs │ ├── Paragraphs.cs │ ├── PictureFormat.cs │ ├── PlotArea.cs │ ├── Point.cs │ ├── Points.cs │ ├── ProofreadingErrors.cs │ ├── ProtectedViewWindow.cs │ ├── ProtectedViewWindows.cs │ ├── Range.cs │ ├── ReadabilityStatistic.cs │ ├── ReadabilityStatistics.cs │ ├── RecentFile.cs │ ├── RecentFiles.cs │ ├── Rectangle.cs │ ├── Rectangles.cs │ ├── ReflectionFormat.cs │ ├── RepeatingSectionItem.cs │ ├── RepeatingSectionItemColl.cs │ ├── Replacement.cs │ ├── Research.cs │ ├── Reviewer.cs │ ├── Reviewers.cs │ ├── Revision.cs │ ├── Revisions.cs │ ├── RevisionsFilter.cs │ ├── RoutingSlip.cs │ ├── Row.cs │ ├── Rows.cs │ ├── Section.cs │ ├── Sections.cs │ ├── Selection.cs │ ├── Sentences.cs │ ├── Series.cs │ ├── SeriesCollection.cs │ ├── SeriesLines.cs │ ├── Shading.cs │ ├── ShadowFormat.cs │ ├── Shape.cs │ ├── ShapeNode.cs │ ├── ShapeNodes.cs │ ├── ShapeRange.cs │ ├── Shapes.cs │ ├── SmartTag.cs │ ├── SmartTagAction.cs │ ├── SmartTagActions.cs │ ├── SmartTagRecognizer.cs │ ├── SmartTagRecognizers.cs │ ├── SmartTagType.cs │ ├── SmartTagTypes.cs │ ├── SmartTags.cs │ ├── SoftEdgeFormat.cs │ ├── Source.cs │ ├── Sources.cs │ ├── SpellingSuggestion.cs │ ├── SpellingSuggestions.cs │ ├── StoryRanges.cs │ ├── Style.cs │ ├── StyleSheet.cs │ ├── StyleSheets.cs │ ├── Styles.cs │ ├── Subdocument.cs │ ├── Subdocuments.cs │ ├── SynonymInfo.cs │ ├── System.cs │ ├── TabStop.cs │ ├── TabStops.cs │ ├── Table.cs │ ├── TableOfAuthorities.cs │ ├── TableOfAuthoritiesCategory.cs │ ├── TableOfContents.cs │ ├── TableOfFigures.cs │ ├── TableStyle.cs │ ├── Tables.cs │ ├── TablesOfAuthorities.cs │ ├── TablesOfAuthoritiesCategories.cs │ ├── TablesOfContents.cs │ ├── TablesOfFigures.cs │ ├── Task.cs │ ├── TaskPane.cs │ ├── TaskPanes.cs │ ├── Tasks.cs │ ├── Template.cs │ ├── Templates.cs │ ├── TextColumn.cs │ ├── TextColumns.cs │ ├── TextEffectFormat.cs │ ├── TextFrame.cs │ ├── TextInput.cs │ ├── TextRetrievalMode.cs │ ├── ThreeDFormat.cs │ ├── TickLabels.cs │ ├── Trendline.cs │ ├── Trendlines.cs │ ├── TwoInitialCapsException.cs │ ├── TwoInitialCapsExceptions.cs │ ├── UndoRecord.cs │ ├── UpBars.cs │ ├── Variable.cs │ ├── Variables.cs │ ├── Version.cs │ ├── Versions.cs │ ├── View.cs │ ├── Walls.cs │ ├── WebOptions.cs │ ├── Window.cs │ ├── Windows.cs │ ├── Words.cs │ ├── WrapFormat.cs │ ├── XMLChildNodeSuggestion.cs │ ├── XMLChildNodeSuggestions.cs │ ├── XMLMapping.cs │ ├── XMLNamespace.cs │ ├── XMLNamespaces.cs │ ├── XMLNode.cs │ ├── XMLNodes.cs │ ├── XMLSchemaReference.cs │ ├── XMLSchemaReferences.cs │ ├── XSLTransform.cs │ ├── XSLTransforms.cs │ ├── Zoom.cs │ ├── Zooms.cs │ ├── _Application.cs │ ├── _Document.cs │ ├── _Font.cs │ ├── _LetterContent.cs │ ├── _OLEControl.cs │ └── _ParagraphFormat.cs │ ├── Enums │ ├── WdAlertLevel.cs │ ├── WdAlignmentTabAlignment.cs │ ├── WdAlignmentTabRelative.cs │ ├── WdAnimation.cs │ ├── WdApplyQuickStyleSets.cs │ ├── WdAraSpeller.cs │ ├── WdArabicNumeral.cs │ ├── WdArrangeStyle.cs │ ├── WdAutoFitBehavior.cs │ ├── WdAutoMacros.cs │ ├── WdAutoVersions.cs │ ├── WdBaselineAlignment.cs │ ├── WdBookmarkSortBy.cs │ ├── WdBorderDistanceFrom.cs │ ├── WdBorderType.cs │ ├── WdBorderTypeHID.cs │ ├── WdBreakType.cs │ ├── WdBrowseTarget.cs │ ├── WdBrowserLevel.cs │ ├── WdBuildingBlockTypes.cs │ ├── WdBuiltInProperty.cs │ ├── WdBuiltinStyle.cs │ ├── WdCalendarType.cs │ ├── WdCalendarTypeBi.cs │ ├── WdCaptionLabelID.cs │ ├── WdCaptionNumberStyle.cs │ ├── WdCaptionNumberStyleHID.cs │ ├── WdCaptionPosition.cs │ ├── WdCellColor.cs │ ├── WdCellVerticalAlignment.cs │ ├── WdCharacterCase.cs │ ├── WdCharacterCaseHID.cs │ ├── WdCharacterWidth.cs │ ├── WdCheckInVersionType.cs │ ├── WdChevronConvertRule.cs │ ├── WdCollapseDirection.cs │ ├── WdColor.cs │ ├── WdColorIndex.cs │ ├── WdColumnWidth.cs │ ├── WdCompareDestination.cs │ ├── WdCompareTarget.cs │ ├── WdCompatibility.cs │ ├── WdCompatibilityMode.cs │ ├── WdConditionCode.cs │ ├── WdConstants.cs │ ├── WdContentControlAppearance.cs │ ├── WdContentControlDateStorageFormat.cs │ ├── WdContentControlLevel.cs │ ├── WdContentControlType.cs │ ├── WdContinue.cs │ ├── WdCountry.cs │ ├── WdCursorMovement.cs │ ├── WdCursorType.cs │ ├── WdCustomLabelPageSize.cs │ ├── WdDateLanguage.cs │ ├── WdDefaultFilePath.cs │ ├── WdDefaultListBehavior.cs │ ├── WdDefaultTableBehavior.cs │ ├── WdDeleteCells.cs │ ├── WdDeletedTextMark.cs │ ├── WdDiacriticColor.cs │ ├── WdDictionaryType.cs │ ├── WdDictionaryTypeHID.cs │ ├── WdDisableFeaturesIntroducedAfter.cs │ ├── WdDocPartInsertOptions.cs │ ├── WdDocumentDirection.cs │ ├── WdDocumentKind.cs │ ├── WdDocumentMedium.cs │ ├── WdDocumentType.cs │ ├── WdDocumentViewDirection.cs │ ├── WdDropPosition.cs │ ├── WdEditionOption.cs │ ├── WdEditionType.cs │ ├── WdEditorType.cs │ ├── WdEmailHTMLFidelity.cs │ ├── WdEmphasisMark.cs │ ├── WdEnableCancelKey.cs │ ├── WdEncloseStyle.cs │ ├── WdEnclosureType.cs │ ├── WdEndnoteLocation.cs │ ├── WdEnvelopeOrientation.cs │ ├── WdExportCreateBookmarks.cs │ ├── WdExportFormat.cs │ ├── WdExportItem.cs │ ├── WdExportOptimizeFor.cs │ ├── WdExportRange.cs │ ├── WdFarEastLineBreakLanguageID.cs │ ├── WdFarEastLineBreakLevel.cs │ ├── WdFieldKind.cs │ ├── WdFieldShading.cs │ ├── WdFieldType.cs │ ├── WdFindMatch.cs │ ├── WdFindWrap.cs │ ├── WdFlowDirection.cs │ ├── WdFontBias.cs │ ├── WdFootnoteLocation.cs │ ├── WdFramePosition.cs │ ├── WdFrameSizeRule.cs │ ├── WdFramesetNewFrameLocation.cs │ ├── WdFramesetSizeType.cs │ ├── WdFramesetType.cs │ ├── WdFrenchSpeller.cs │ ├── WdGoToDirection.cs │ ├── WdGoToItem.cs │ ├── WdGranularity.cs │ ├── WdGutterStyle.cs │ ├── WdGutterStyleOld.cs │ ├── WdHeaderFooterIndex.cs │ ├── WdHeadingSeparator.cs │ ├── WdHebSpellStart.cs │ ├── WdHelpType.cs │ ├── WdHelpTypeHID.cs │ ├── WdHighAnsiText.cs │ ├── WdHorizontalInVerticalType.cs │ ├── WdHorizontalLineAlignment.cs │ ├── WdHorizontalLineWidthType.cs │ ├── WdIMEMode.cs │ ├── WdIndexFilter.cs │ ├── WdIndexFormat.cs │ ├── WdIndexSortBy.cs │ ├── WdIndexType.cs │ ├── WdInformation.cs │ ├── WdInlineShapeType.cs │ ├── WdInsertCells.cs │ ├── WdInsertedTextMark.cs │ ├── WdInternationalIndex.cs │ ├── WdJustificationMode.cs │ ├── WdKana.cs │ ├── WdKey.cs │ ├── WdKeyCategory.cs │ ├── WdLanguageID.cs │ ├── WdLanguageID2000.cs │ ├── WdLayoutMode.cs │ ├── WdLetterStyle.cs │ ├── WdLetterheadLocation.cs │ ├── WdLigatures.cs │ ├── WdLineEndingType.cs │ ├── WdLineSpacing.cs │ ├── WdLineStyle.cs │ ├── WdLineType.cs │ ├── WdLineWidth.cs │ ├── WdLinkType.cs │ ├── WdListApplyTo.cs │ ├── WdListGalleryType.cs │ ├── WdListLevelAlignment.cs │ ├── WdListNumberStyle.cs │ ├── WdListNumberStyleHID.cs │ ├── WdListType.cs │ ├── WdLockType.cs │ ├── WdMailMergeActiveRecord.cs │ ├── WdMailMergeComparison.cs │ ├── WdMailMergeDataSource.cs │ ├── WdMailMergeDefaultRecord.cs │ ├── WdMailMergeDestination.cs │ ├── WdMailMergeMailFormat.cs │ ├── WdMailMergeMainDocType.cs │ ├── WdMailMergeState.cs │ ├── WdMailSystem.cs │ ├── WdMailerPriority.cs │ ├── WdMappedDataFields.cs │ ├── WdMeasurementUnits.cs │ ├── WdMeasurementUnitsHID.cs │ ├── WdMergeFormatFrom.cs │ ├── WdMergeSubType.cs │ ├── WdMergeTarget.cs │ ├── WdMonthNames.cs │ ├── WdMoveFromTextMark.cs │ ├── WdMoveToTextMark.cs │ ├── WdMovementType.cs │ ├── WdMultipleWordConversionsMode.cs │ ├── WdNewDocumentType.cs │ ├── WdNoteNumberStyle.cs │ ├── WdNoteNumberStyleHID.cs │ ├── WdNumberForm.cs │ ├── WdNumberSpacing.cs │ ├── WdNumberStyleWordBasicBiDi.cs │ ├── WdNumberType.cs │ ├── WdNumberingRule.cs │ ├── WdOLEPlacement.cs │ ├── WdOLEType.cs │ ├── WdOLEVerb.cs │ ├── WdOMathBreakBin.cs │ ├── WdOMathBreakSub.cs │ ├── WdOMathFracType.cs │ ├── WdOMathFunctionType.cs │ ├── WdOMathHorizAlignType.cs │ ├── WdOMathJc.cs │ ├── WdOMathShapeType.cs │ ├── WdOMathSpacingRule.cs │ ├── WdOMathType.cs │ ├── WdOMathVertAlignType.cs │ ├── WdOpenFormat.cs │ ├── WdOrganizerObject.cs │ ├── WdOrientation.cs │ ├── WdOriginalFormat.cs │ ├── WdOutlineLevel.cs │ ├── WdPageBorderArt.cs │ ├── WdPageColor.cs │ ├── WdPageFit.cs │ ├── WdPageNumberAlignment.cs │ ├── WdPageNumberStyle.cs │ ├── WdPageNumberStyleHID.cs │ ├── WdPaperSize.cs │ ├── WdPaperTray.cs │ ├── WdParagraphAlignment.cs │ ├── WdParagraphAlignmentHID.cs │ ├── WdPartOfSpeech.cs │ ├── WdPasteDataType.cs │ ├── WdPasteOptions.cs │ ├── WdPhoneticGuideAlignmentType.cs │ ├── WdPictureLinkType.cs │ ├── WdPortugueseReform.cs │ ├── WdPreferredWidthType.cs │ ├── WdPrintOutItem.cs │ ├── WdPrintOutPages.cs │ ├── WdPrintOutRange.cs │ ├── WdProofreadingErrorType.cs │ ├── WdProtectedViewCloseReason.cs │ ├── WdProtectionType.cs │ ├── WdReadingLayoutMargin.cs │ ├── WdReadingOrder.cs │ ├── WdRecoveryType.cs │ ├── WdRectangleType.cs │ ├── WdReferenceKind.cs │ ├── WdReferenceType.cs │ ├── WdRelativeHorizontalPosition.cs │ ├── WdRelativeHorizontalSize.cs │ ├── WdRelativeVerticalPosition.cs │ ├── WdRelativeVerticalSize.cs │ ├── WdRelocate.cs │ ├── WdRemoveDocInfoType.cs │ ├── WdReplace.cs │ ├── WdRevisedLinesMark.cs │ ├── WdRevisedPropertiesMark.cs │ ├── WdRevisionType.cs │ ├── WdRevisionsBalloonMargin.cs │ ├── WdRevisionsBalloonPrintOrientation.cs │ ├── WdRevisionsBalloonWidthType.cs │ ├── WdRevisionsMarkup.cs │ ├── WdRevisionsMode.cs │ ├── WdRevisionsView.cs │ ├── WdRevisionsWrap.cs │ ├── WdRoutingSlipDelivery.cs │ ├── WdRoutingSlipStatus.cs │ ├── WdRowAlignment.cs │ ├── WdRowHeightRule.cs │ ├── WdRulerStyle.cs │ ├── WdSalutationGender.cs │ ├── WdSalutationType.cs │ ├── WdSaveFormat.cs │ ├── WdSaveOptions.cs │ ├── WdScrollbarType.cs │ ├── WdSectionDirection.cs │ ├── WdSectionStart.cs │ ├── WdSeekView.cs │ ├── WdSelectionFlags.cs │ ├── WdSelectionType.cs │ ├── WdSeparatorType.cs │ ├── WdShapePosition.cs │ ├── WdShapePositionRelative.cs │ ├── WdShapeSizeRelative.cs │ ├── WdShowFilter.cs │ ├── WdShowSourceDocuments.cs │ ├── WdSmartTagControlType.cs │ ├── WdSortFieldType.cs │ ├── WdSortFieldTypeHID.cs │ ├── WdSortOrder.cs │ ├── WdSortSeparator.cs │ ├── WdSpanishSpeller.cs │ ├── WdSpecialPane.cs │ ├── WdSpellingErrorType.cs │ ├── WdSpellingWordType.cs │ ├── WdStatistic.cs │ ├── WdStatisticHID.cs │ ├── WdStoryType.cs │ ├── WdStyleSheetLinkType.cs │ ├── WdStyleSheetPrecedence.cs │ ├── WdStyleSort.cs │ ├── WdStyleType.cs │ ├── WdStylisticSet.cs │ ├── WdSubscriberFormats.cs │ ├── WdSummaryLength.cs │ ├── WdSummaryMode.cs │ ├── WdTCSCConverterDirection.cs │ ├── WdTabAlignment.cs │ ├── WdTabLeader.cs │ ├── WdTabLeaderHID.cs │ ├── WdTableDirection.cs │ ├── WdTableFieldSeparator.cs │ ├── WdTableFormat.cs │ ├── WdTableFormatApply.cs │ ├── WdTablePosition.cs │ ├── WdTaskPanes.cs │ ├── WdTemplateType.cs │ ├── WdTextFormFieldType.cs │ ├── WdTextOrientation.cs │ ├── WdTextOrientationHID.cs │ ├── WdTextboxTightWrap.cs │ ├── WdTextureIndex.cs │ ├── WdThemeColorIndex.cs │ ├── WdToaFormat.cs │ ├── WdTocFormat.cs │ ├── WdTofFormat.cs │ ├── WdTrailingCharacter.cs │ ├── WdTwoLinesInOneType.cs │ ├── WdUnderline.cs │ ├── WdUnits.cs │ ├── WdUpdateStyleListBehavior.cs │ ├── WdUseFormattingFrom.cs │ ├── WdVerticalAlignment.cs │ ├── WdViewType.cs │ ├── WdViewTypeOld.cs │ ├── WdVisualSelection.cs │ ├── WdWindowState.cs │ ├── WdWindowType.cs │ ├── WdWordDialog.cs │ ├── WdWordDialogHID.cs │ ├── WdWordDialogTab.cs │ ├── WdWordDialogTabHID.cs │ ├── WdWrapSideType.cs │ ├── WdWrapType.cs │ ├── WdWrapTypeMerged.cs │ ├── WdXMLNodeLevel.cs │ ├── WdXMLNodeType.cs │ ├── WdXMLSelectionChangeReason.cs │ ├── WdXMLValidationStatus.cs │ ├── XlAxisCrosses.cs │ ├── XlAxisGroup.cs │ ├── XlAxisType.cs │ ├── XlBackground.cs │ ├── XlBarShape.cs │ ├── XlBorderWeight.cs │ ├── XlCategoryLabelLevel.cs │ ├── XlCategoryType.cs │ ├── XlChartElementPosition.cs │ ├── XlChartGallery.cs │ ├── XlChartItem.cs │ ├── XlChartPicturePlacement.cs │ ├── XlChartPictureType.cs │ ├── XlChartSplitType.cs │ ├── XlColorIndex.cs │ ├── XlConstants.cs │ ├── XlCopyPictureFormat.cs │ ├── XlDataLabelPosition.cs │ ├── XlDataLabelSeparator.cs │ ├── XlDataLabelsType.cs │ ├── XlDisplayBlanksAs.cs │ ├── XlDisplayUnit.cs │ ├── XlEndStyleCap.cs │ ├── XlErrorBarDirection.cs │ ├── XlErrorBarInclude.cs │ ├── XlErrorBarType.cs │ ├── XlHAlign.cs │ ├── XlLegendPosition.cs │ ├── XlLineStyle.cs │ ├── XlMarkerStyle.cs │ ├── XlOrientation.cs │ ├── XlPattern.cs │ ├── XlPictureAppearance.cs │ ├── XlPieSliceIndex.cs │ ├── XlPieSliceLocation.cs │ ├── XlPivotFieldOrientation.cs │ ├── XlReadingOrder.cs │ ├── XlRgbColor.cs │ ├── XlRowCol.cs │ ├── XlScaleType.cs │ ├── XlSeriesNameLevel.cs │ ├── XlSizeRepresents.cs │ ├── XlTickLabelOrientation.cs │ ├── XlTickLabelPosition.cs │ ├── XlTickMark.cs │ ├── XlTimeUnit.cs │ ├── XlTrendlineType.cs │ ├── XlUnderlineStyle.cs │ └── XlVAlign.cs │ ├── EventInterfaces │ ├── ApplicationEvents2.cs │ ├── ApplicationEvents3.cs │ ├── ApplicationEvents4.cs │ ├── DocumentEvents.cs │ ├── DocumentEvents2.cs │ └── OCXEvents.cs │ ├── Modules │ └── Global.cs │ ├── Tools │ ├── COMAddin.cs │ ├── ITaskPane.cs │ └── Utils │ │ ├── ApplicationUtils.cs │ │ ├── CommonUtils.cs │ │ ├── DocumentFormat.cs │ │ └── FileUtils.cs │ ├── Utils │ └── ProjectInfo.cs │ └── WordApi.csproj ├── Tests ├── Concept Tests │ ├── CommonUtils │ │ ├── ConsoleApplication1.sln │ │ └── ConsoleApplication1 │ │ │ ├── ConsoleApplication1.csproj │ │ │ ├── Program.cs │ │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── CreateInstanceEvent │ │ ├── ConsoleApplication1.sln │ │ └── ConsoleApplication1 │ │ │ ├── ConsoleApplication1.csproj │ │ │ ├── Program.cs │ │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── CreateOutlookAppIfRunning │ │ └── CreateOutlookAppIfRunning │ │ │ ├── CreateOutlookAppIfRunning.csproj │ │ │ ├── Program.cs │ │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── GetRunngInstances │ │ ├── ConsoleApplication1.sln │ │ └── ConsoleApplication1 │ │ │ ├── ConsoleApplication1.csproj │ │ │ ├── Program.cs │ │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── Globals │ │ ├── Globals.sln │ │ └── Globals │ │ │ ├── Globals.vbproj │ │ │ ├── Module1.vb │ │ │ └── My Project │ │ │ ├── Application.Designer.vb │ │ │ ├── Application.myapp │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ ├── ObjectFromWindow │ │ ├── ExcelApplicationWindow.cs │ │ ├── ObjectFromWindow.csproj │ │ ├── ObjectFromWindow.sln │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── WindowEnumerator.cs │ ├── OnDisposeTest │ │ ├── OnDisposeTest.sln │ │ └── OnDisposeTest │ │ │ ├── OnDisposeTest.csproj │ │ │ ├── Program.cs │ │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── OperatorOverloadsCSharp │ │ ├── OperatorOverloadsCSharp.sln │ │ └── OperatorOverloadsCSharp │ │ │ ├── OperatorOverloadsCSharp.csproj │ │ │ ├── Program.cs │ │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── OperatorOverloadsVB │ │ ├── OperatorOverloadsVB.sln │ │ └── OperatorOverloadsVB │ │ │ ├── Module1.vb │ │ │ ├── My Project │ │ │ ├── Application.Designer.vb │ │ │ ├── Application.myapp │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ │ └── OperatorOverloadsVB.vbproj │ ├── Out Parameters │ │ ├── Out Parameters.sln │ │ └── Out Parameters │ │ │ ├── Form1.Designer.cs │ │ │ ├── Form1.cs │ │ │ ├── Form1.resx │ │ │ ├── Out Parameters.csproj │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ │ └── app.config │ ├── PerformanceTrace │ │ ├── ConsoleApplication1.sln │ │ └── ConsoleApplication1 │ │ │ ├── ConsoleApplication1.csproj │ │ │ ├── Program.cs │ │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── Ref Parameters in Events │ │ ├── Ref Parameters in Events.sln │ │ └── Ref Parameters in Events │ │ │ ├── Form1.Designer.cs │ │ │ ├── Form1.cs │ │ │ ├── Form1.resx │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ │ ├── Ref Parameters in Events.csproj │ │ │ └── app.config │ ├── Subclassing │ │ ├── WindowsFormsApplication1.sln │ │ └── WindowsFormsApplication1 │ │ │ ├── Form1.Designer.cs │ │ │ ├── Form1.cs │ │ │ ├── Form1.resx │ │ │ ├── Form2.Designer.cs │ │ │ ├── Form2.cs │ │ │ ├── Form2.resx │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ │ ├── SubClassingWindow.cs │ │ │ ├── UserControl1.Designer.cs │ │ │ ├── UserControl1.cs │ │ │ ├── UserControl1.resx │ │ │ ├── WindowsFormsApplication1.csproj │ │ │ └── WndMessage.cs │ ├── SuppressOutlookSecurity │ │ ├── SuppressOutlookSecurity.sln │ │ └── SuppressOutlookSecurity │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ │ └── SuppressOutlookSecurity.csproj │ └── ThreadSafe │ │ ├── ThreadSafe.sln │ │ └── ThreadSafe │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── ThreadSafe.csproj ├── Interop │ └── MSProject │ │ └── AddProjectTasksWithEvents │ │ ├── WindowsFormsApplication1.sln │ │ └── WindowsFormsApplication1 │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ └── WindowsFormsApplication1.csproj ├── Main Tests │ ├── AccessTestsCSharp │ │ ├── AccessTestsCSharp.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Test01.cs │ │ ├── Test02.cs │ │ ├── Test03.cs │ │ ├── Test04.bmp │ │ ├── Test04.cs │ │ └── TestAssembly.cs │ ├── AccessTestsVB │ │ ├── AccessTestsVB.vbproj │ │ ├── My Project │ │ │ ├── Application.Designer.vb │ │ │ ├── Application.myapp │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ ├── Test01.vb │ │ ├── Test02.vb │ │ ├── Test03.vb │ │ ├── Test04.bmp │ │ ├── Test04.vb │ │ └── TestAssembly.vb │ ├── ExcelAddinCSharp │ │ ├── ExcelAddinCSharp.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── RibbonUI.xml │ │ ├── SampleControl.Designer.cs │ │ ├── SampleControl.cs │ │ ├── SampleControl.resx │ │ └── TestAddin.cs │ ├── ExcelAddinVB │ │ ├── ExcelAddinVB.vbproj │ │ ├── My Project │ │ │ ├── Application.Designer.vb │ │ │ ├── Application.myapp │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ ├── RibbonUI.xml │ │ ├── SampleControl.Designer.vb │ │ ├── SampleControl.resx │ │ ├── SampleControl.vb │ │ └── TestAddin.vb │ ├── ExcelTests │ │ ├── ExcelTestsCSharp.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Test01.cs │ │ ├── Test02.cs │ │ ├── Test03.cs │ │ ├── Test04.cs │ │ ├── Test05.cs │ │ ├── Test06.cs │ │ ├── Test07.cs │ │ ├── Test08.bmp │ │ ├── Test08.cs │ │ ├── Test09.cs │ │ └── TestAssembly.cs │ ├── ExcelTestsVB │ │ ├── ExcelTestsVB.vbproj │ │ ├── My Project │ │ │ ├── Application.Designer.vb │ │ │ ├── Application.myapp │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ ├── Test01.vb │ │ ├── Test02.vb │ │ ├── Test03.vb │ │ ├── Test04.vb │ │ ├── Test05.vb │ │ ├── Test06.vb │ │ ├── Test07.vb │ │ ├── Test08.bmp │ │ ├── Test08.vb │ │ ├── Test09.vb │ │ └── TestAssembly.vb │ ├── Host │ │ ├── ExceptionDialog.Designer.cs │ │ ├── ExceptionDialog.cs │ │ ├── ExceptionDialog.resx │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── Host.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── app.config │ │ ├── exclamation.png │ │ └── tick.png │ ├── OutlookTestsCSharp │ │ ├── OutlookTestsCSharp.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Test01.cs │ │ ├── Test02.cs │ │ ├── Test03.cs │ │ ├── Test04.cs │ │ ├── Test05.cs │ │ ├── Test06.cs │ │ ├── Test07.bmp │ │ ├── Test07.cs │ │ └── TestAssembly.cs │ ├── OutlookTestsVB │ │ ├── My Project │ │ │ ├── Application.Designer.vb │ │ │ ├── Application.myapp │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ ├── OutlookTestsVB.vbproj │ │ ├── Test01.vb │ │ ├── Test02.vb │ │ ├── Test03.vb │ │ ├── Test04.vb │ │ ├── Test05.vb │ │ ├── Test06.vb │ │ ├── Test07.bmp │ │ ├── Test07.vb │ │ └── TestAssembly.vb │ ├── PowerPointTestsCSharp │ │ ├── PowerPointTestsCSharp.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Test01.cs │ │ ├── Test02.cs │ │ ├── Test03.cs │ │ ├── Test04.cs │ │ ├── Test05.cs │ │ ├── Test06.bmp │ │ ├── Test06.cs │ │ └── TestAssembly.cs │ ├── PowerPointTestsVB │ │ ├── My Project │ │ │ ├── Application.Designer.vb │ │ │ ├── Application.myapp │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ ├── PowerPointTestsVB.vbproj │ │ ├── Test01.vb │ │ ├── Test02.vb │ │ ├── Test03.vb │ │ ├── Test04.vb │ │ ├── Test05.vb │ │ ├── Test06.bmp │ │ ├── Test06.vb │ │ └── TestAssembly.vb │ ├── ProjectTestsCSharp │ │ ├── ProjectTestsCSharp.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Test01.cs │ │ ├── Test02.cs │ │ └── TestAssembly.cs │ ├── ProjectTestsVB │ │ ├── My Project │ │ │ ├── Application.Designer.vb │ │ │ ├── Application.myapp │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ ├── ProjectTestsVB.vbproj │ │ ├── Test01.vb │ │ ├── Test02.vb │ │ └── TestAssembly.vb │ ├── Tests.Core │ │ ├── ITestAssembly.cs │ │ ├── ITestPackage.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── TestResult.cs │ │ └── Tests.Core.csproj │ ├── Tests.sln │ ├── WordAddinCSharp │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── RibbonUI.xml │ │ ├── SampleControl.Designer.cs │ │ ├── SampleControl.cs │ │ ├── SampleControl.resx │ │ ├── TestAddin.cs │ │ └── WordAddinCSharp.csproj │ ├── WordAddinVB │ │ ├── My Project │ │ │ ├── Application.Designer.vb │ │ │ ├── Application.myapp │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ ├── RibbonUI.xml │ │ ├── SampleControl.Designer.vb │ │ ├── SampleControl.resx │ │ ├── SampleControl.vb │ │ ├── TestAddin.vb │ │ └── WordAddinVB.vbproj │ ├── WordTestsCSharp │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Test01.cs │ │ ├── Test02.cs │ │ ├── Test03.cs │ │ ├── Test04.cs │ │ ├── Test05.cs │ │ ├── Test06.cs │ │ ├── Test07.bmp │ │ ├── Test07.cs │ │ ├── Test08.cs │ │ ├── Test09.cs │ │ ├── TestAssembly.cs │ │ └── WordTestsCSharp.csproj │ └── WordTestsVB │ │ ├── My Project │ │ ├── Application.Designer.vb │ │ ├── Application.myapp │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings │ │ ├── Test01.vb │ │ ├── Test02.vb │ │ ├── Test03.vb │ │ ├── Test04.vb │ │ ├── Test05.vb │ │ ├── Test06.vb │ │ ├── Test07.bmp │ │ ├── Test07.vb │ │ ├── Test08.vb │ │ ├── Test09.vb │ │ ├── TestAssembly.vb │ │ └── WordTestsVB.vbproj ├── Mass Tests │ ├── Excel │ │ └── Write 1Million Cells │ │ │ ├── ConsoleApplication1.csproj │ │ │ ├── ConsoleApplication1.sln │ │ │ ├── Program.cs │ │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ └── Outlook │ │ └── FetchInboxFolder │ │ ├── WindowsFormsApplication1.sln │ │ └── WindowsFormsApplication1 │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── WindowsFormsApplication1.csproj │ │ └── app.config └── Performance Tests │ ├── Test1 │ ├── Dynamics │ │ ├── Dynamics.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── app.config │ ├── Interop │ │ ├── Interop.csproj │ │ ├── Program.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── NetOffice │ │ ├── NetOffice.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── app.config │ ├── Test1.sln │ └── VBLateBinding │ │ ├── Module1.vb │ │ ├── My Project │ │ ├── Application.Designer.vb │ │ ├── Application.myapp │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings │ │ ├── VBLateBinding.vbproj │ │ └── app.config │ ├── Test2 │ ├── Dynamics │ │ ├── Dynamics.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── app.config │ ├── Interop │ │ ├── Interop.csproj │ │ ├── Program.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── NetOffice │ │ ├── NetOffice.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── app.config │ ├── Test2.sln │ └── VBLateBinding │ │ ├── Module1.vb │ │ ├── My Project │ │ ├── Application.Designer.vb │ │ ├── Application.myapp │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings │ │ ├── VBLateBinding.vbproj │ │ └── app.config │ └── Test3 │ ├── Dynamics │ ├── Dynamics.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── app.config │ ├── Interop │ ├── Interop.csproj │ ├── Program.cs │ └── Properties │ │ └── AssemblyInfo.cs │ ├── NetOffice │ ├── NetOffice.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── app.config │ ├── Test3.sln │ └── VBLateBinding │ ├── Module1.vb │ ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings │ ├── VBLateBinding.vbproj │ └── app.config ├── Toolbox ├── Languages │ └── 1049.lng ├── NetOffice.DeveloperToolbox.sln ├── NetOffice.OutlookSecurity │ ├── ClickStrategy.cs │ ├── NetOffice.OutlookSecurity.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Rect.cs │ ├── SecurityDialog.cs │ ├── SecurityDialogCheckBox.cs │ ├── SecurityDialogLeftButton.cs │ ├── Supress.cs │ └── User32.cs └── Toolbox │ ├── 1049.lng │ ├── AssemblyInfo.cs │ ├── Controls │ ├── Buttons │ │ └── RoundedButton.cs │ ├── Check │ │ └── GlowCheckBox.cs │ ├── Custom │ │ ├── InviteControl.Designer.cs │ │ ├── InviteControl.cs │ │ ├── InviteControl.resx │ │ └── sam.jpg │ ├── Error │ │ ├── ErrorControl.Designer.cs │ │ ├── ErrorControl.cs │ │ └── ErrorControl.resx │ ├── Hex │ │ ├── Be.Windows.Forms.HexBox.xml │ │ ├── ByteCharConverters.cs │ │ ├── ByteCollection.cs │ │ ├── BytePositionInfo.cs │ │ ├── DataBlock.cs │ │ ├── DataMap.cs │ │ ├── DynamicByteProvider.cs │ │ ├── FileDataBlock.cs │ │ ├── HexBox.cs │ │ ├── HexBox.resx │ │ ├── HexCasing.cs │ │ ├── IByteProvider.cs │ │ ├── MemoryDataBlock.cs │ │ ├── NativeMethods.cs │ │ └── Util.cs │ ├── InfoLayer │ │ ├── InfoControl.Designer.cs │ │ ├── InfoControl.cs │ │ ├── InfoControl.resx │ │ └── Strings.txt │ ├── Label │ │ └── GlowLabel.cs │ ├── Layout │ │ ├── AdvTableLayoutControl.Designer.cs │ │ └── AdvTableLayoutControl.cs │ ├── Painter │ │ ├── OverlayPainter.cs │ │ └── OverlayPainter.designer.cs │ ├── Radio │ │ └── GlowRadioButton.cs │ ├── Text │ │ ├── AdvRichTextBox.cs │ │ ├── RichTextEditor.Designer.cs │ │ ├── RichTextEditor.cs │ │ ├── RichTextEditor.resx │ │ ├── Scroller.Designer.cs │ │ ├── Scroller.cs │ │ └── Scroller.resx │ └── Tree │ │ ├── MultiSelectTreeView.cs │ │ ├── TreeGridCell.cs │ │ ├── TreeGridEvents.cs │ │ ├── TreeGridNode.cs │ │ ├── TreeGridNodeCollection.cs │ │ └── TreeGridView.cs │ ├── ErrorCategory.cs │ ├── Forms │ ├── ErrorForm.Designer.cs │ ├── ErrorForm.cs │ ├── ErrorForm.resx │ ├── MainForm.Designer.cs │ ├── MainForm.cs │ ├── MainForm.resx │ ├── SelectLanguageForm.Designer.cs │ ├── SelectLanguageForm.cs │ └── SelectLanguageForm.resx │ ├── ILocalizationDesign.cs │ ├── ILocalizationReplaceProvider.cs │ ├── IToolboxControl.cs │ ├── IToolboxHost.cs │ ├── Images │ ├── INFO.ICO │ ├── NetOffice.Icon.16x16.ico │ ├── NetOffice.Icon.32x32.JPG │ ├── NetOffice.Icon.32x32.ico │ ├── NetOffice.Icon.400x100.JPG │ ├── NetOffice.Icon.48x42.png │ ├── NetOffice.Icon.49x43.JPG │ ├── NetOffice.Icon.png │ ├── add.png │ ├── exclamation.png │ ├── header.PNG │ ├── info_rhombus.png │ ├── lock.png │ ├── qip_online.png │ └── welcome.png │ ├── LocalizationDefaultChildInfo.cs │ ├── NetOffice.DeveloperToolbox.csproj │ ├── Program.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── ReadMe.txt │ ├── RessourceTableAttribute.cs │ ├── Ressources │ ├── ErrorFormStrings.txt │ ├── NetOffice.Icon.32x32.ico │ └── TranslationControlStrings.txt │ ├── ToolboxControls │ ├── About │ │ ├── AboutControl.Designer.cs │ │ ├── AboutControl.cs │ │ ├── AboutControl.resx │ │ ├── EasterEggControl.Designer.cs │ │ ├── EasterEggControl.cs │ │ ├── EasterEggControl.resx │ │ ├── Gunshot.wav │ │ ├── Strings.txt │ │ ├── Wait.wav │ │ └── info_rhombus.png │ ├── AddinGuard │ │ ├── AddinGuardControl.Designer.cs │ │ ├── AddinGuardControl.cs │ │ ├── AddinGuardControl.resx │ │ ├── AddinItems.cs │ │ ├── AddinKey.cs │ │ ├── AddinKeyValue.cs │ │ ├── AddinsKey.cs │ │ ├── CLSDFOLD.ICO │ │ ├── DefaultConfiguration.txt │ │ ├── DisabledItems.cs │ │ ├── DisabledKey.cs │ │ ├── DisabledValue.cs │ │ ├── Icon.png │ │ ├── Info1031.rtf │ │ ├── Info1033.rtf │ │ ├── MISC06.ICO │ │ ├── MYCOMP.ICO │ │ ├── Messages.txt │ │ ├── NotificationType.cs │ │ ├── NotifyKind.cs │ │ ├── OPENFOLD.ICO │ │ ├── RegistryChangeInfo.cs │ │ ├── Strings.txt │ │ ├── WatchController.cs │ │ ├── WatchNotify.cs │ │ └── client_account_template.png │ ├── ApplicationObserver │ │ ├── Access.ico │ │ ├── ApplicationObserverControl.Designer.cs │ │ ├── ApplicationObserverControl.cs │ │ ├── ApplicationObserverControl.resx │ │ ├── Excel.ico │ │ ├── HotKey.cs │ │ ├── Icon.png │ │ ├── IconsAndConfig │ │ │ ├── DefaultConfiguration.txt │ │ │ ├── NotRunning.ico │ │ │ ├── Running.ico │ │ │ └── Thumbs.db │ │ ├── Info1031.rtf │ │ ├── Info1033.rtf │ │ ├── OfficeProcessKiller.cs │ │ ├── Outlook.ico │ │ ├── PowerPoint.ico │ │ ├── Strings.txt │ │ ├── Thumbs.db │ │ ├── Word.ico │ │ ├── dynamite.png │ │ ├── info_rhombus.png │ │ ├── processor.png │ │ ├── project.PNG │ │ ├── question.png │ │ └── visio.PNG │ ├── ControlContainer.Designer.cs │ ├── ControlContainer.cs │ ├── ControlContainer.resx │ ├── OfficeCompatibility │ │ ├── AnalyzerResult.cs │ │ ├── Assembly.ICO │ │ ├── AssemblyAnalyzer.cs │ │ ├── EntityIcons │ │ │ ├── Thumbs.db │ │ │ ├── VSObject_Assembly.bmp │ │ │ ├── VSObject_Class.bmp │ │ │ ├── VSObject_Class_Private.bmp │ │ │ ├── VSObject_Enum.bmp │ │ │ ├── VSObject_EnumItem_Private.bmp │ │ │ ├── VSObject_Field.bmp │ │ │ ├── VSObject_Field_Private.bmp │ │ │ ├── VSObject_Method.bmp │ │ │ ├── VSObject_Method_Private.bmp │ │ │ ├── VSObject_Properties.bmp │ │ │ └── VSObject_Properties_Private.bmp │ │ ├── Icon.png │ │ ├── Info1031.rtf │ │ ├── Info1033.rtf │ │ ├── MISC06.ICO │ │ ├── NetOfficeSupportTable.cs │ │ ├── OfficeCompatibilityControl.Designer.cs │ │ ├── OfficeCompatibilityControl.cs │ │ ├── OfficeCompatibilityControl.resx │ │ ├── Report.txt │ │ ├── ReportControl.Designer.cs │ │ ├── ReportControl.cs │ │ ├── ReportControl.resx │ │ ├── ReportControlStrings.txt │ │ ├── Strings.txt │ │ ├── Thumbs.db │ │ ├── accept.png │ │ ├── exclamation.png │ │ ├── open_folder.png │ │ └── recycle.png │ ├── OfficeUI │ │ ├── ApplicationWrapper.cs │ │ ├── CommandBarsWrapper.cs │ │ ├── Icon.png │ │ ├── Info1031.rtf │ │ ├── Info1033.rtf │ │ ├── OfficeUIControl.Designer.cs │ │ ├── OfficeUIControl.cs │ │ ├── OfficeUIControl.resx │ │ ├── SelectOfficeAppControl.Designer.cs │ │ ├── SelectOfficeAppControl.cs │ │ ├── SelectOfficeAppControl.resx │ │ ├── SelectOfficeAppControlStrings.txt │ │ ├── Strings.txt │ │ ├── WaitControl.Designer.cs │ │ ├── WaitControl.cs │ │ ├── WaitControl.resx │ │ ├── WaitControlTable.txt │ │ ├── add.png │ │ ├── bar.png │ │ ├── button.png │ │ ├── delete.png │ │ └── reset.png │ ├── OutlookSecurity │ │ ├── Icon.ico │ │ ├── Info1031.rtf │ │ ├── Info1033.rtf │ │ ├── OutlookSecurityControl.Designer.cs │ │ ├── OutlookSecurityControl.cs │ │ ├── OutlookSecurityControl.resx │ │ ├── OutlookSecurityDialog.gif │ │ └── Strings.txt │ ├── ProjectWizard │ │ ├── CaptionStrings.txt │ │ ├── Controls │ │ │ ├── EnvironmentControl.Designer.cs │ │ │ ├── EnvironmentControl.cs │ │ │ ├── EnvironmentControl.resx │ │ │ ├── EnvironmentControl.txt │ │ │ ├── FinishControl.Designer.cs │ │ │ ├── FinishControl.cs │ │ │ ├── FinishControl.resx │ │ │ ├── FinishControl.txt │ │ │ ├── GuiControl.Designer.cs │ │ │ ├── GuiControl.cs │ │ │ ├── GuiControl.resx │ │ │ ├── GuiControl.txt │ │ │ ├── HostControl.Designer.cs │ │ │ ├── HostControl.cs │ │ │ ├── HostControl.resx │ │ │ ├── HostControl.txt │ │ │ ├── IWizardControl.cs │ │ │ ├── LoadControl.Designer.cs │ │ │ ├── LoadControl.cs │ │ │ ├── LoadControl.resx │ │ │ ├── LoadControl.txt │ │ │ ├── NameControl.Designer.cs │ │ │ ├── NameControl.cs │ │ │ ├── NameControl.resx │ │ │ ├── NameControl.txt │ │ │ ├── ProjectControl.Designer.cs │ │ │ ├── ProjectControl.cs │ │ │ ├── ProjectControl.resx │ │ │ ├── ProjectControl.txt │ │ │ ├── SummaryControl.Designer.cs │ │ │ ├── SummaryControl.cs │ │ │ ├── SummaryControl.resx │ │ │ └── SummaryControl.txt │ │ ├── Icon.png │ │ ├── Info1031.rtf │ │ ├── Info1033.rtf │ │ ├── LocalizationStrings.txt │ │ ├── LocalizationStringsControl.Designer.cs │ │ ├── LocalizationStringsControl.cs │ │ ├── LocalizationStringsControl.resx │ │ ├── LocalizedCaptions.cs │ │ ├── LocalizedCaptionsControl.Designer.cs │ │ ├── LocalizedCaptionsControl.cs │ │ ├── LocalizedCaptionsControl.resx │ │ ├── LocalizedContent.cs │ │ ├── ProjectConverters │ │ │ ├── ClassLibraryConverterCS.cs │ │ │ ├── ClassLibraryConverterVB.cs │ │ │ ├── ConsoleConverterCS.cs │ │ │ ├── ConsoleConverterVB.cs │ │ │ ├── Converter.cs │ │ │ ├── ConverterUtils.cs │ │ │ ├── SimpleMultiAddinConverterCS.cs │ │ │ ├── SimpleMultiAddinConverterVB.cs │ │ │ ├── SimpleSingleAddinConverterCS.cs │ │ │ ├── SimpleSingleAddinConverterVB.cs │ │ │ ├── ToolsMultiAddinConverterCS.cs │ │ │ ├── ToolsMultiAddinConverterVB.cs │ │ │ ├── ToolsSingleAddinConverterCS.cs │ │ │ ├── ToolsSingleAddinConverterVB.cs │ │ │ ├── WindowsFormsConverterCS.cs │ │ │ └── WindowsFormsConverterVB.cs │ │ ├── ProjectOptions.cs │ │ ├── ProjectTemplates │ │ │ ├── ClassLibraryCS │ │ │ │ ├── AssemblyInfo.txt │ │ │ │ ├── Class1.txt │ │ │ │ ├── Project.txt │ │ │ │ └── Solution.txt │ │ │ ├── ClassLibraryVB │ │ │ │ ├── Application_Designer.txt │ │ │ │ ├── Application_myapp.txt │ │ │ │ ├── AssemblyInfo.txt │ │ │ │ ├── Class1.txt │ │ │ │ ├── Project.txt │ │ │ │ ├── Resources_Designer.txt │ │ │ │ ├── Resources_resx.txt │ │ │ │ ├── Settings_Designer.txt │ │ │ │ ├── Settings_settings.txt │ │ │ │ └── Solution.txt │ │ │ ├── ConsoleCS │ │ │ │ ├── AssemblyInfo.txt │ │ │ │ ├── Program.txt │ │ │ │ ├── Project.txt │ │ │ │ └── Solution.txt │ │ │ ├── ConsoleVB │ │ │ │ ├── Application_Designer.txt │ │ │ │ ├── Application_myapp.txt │ │ │ │ ├── AssemblyInfo.txt │ │ │ │ ├── Program.txt │ │ │ │ ├── Project.txt │ │ │ │ ├── Resources_Designer.txt │ │ │ │ ├── Resources_resx.txt │ │ │ │ ├── Settings_Designer.txt │ │ │ │ ├── Settings_settings.txt │ │ │ │ └── Solution.txt │ │ │ ├── SimpleMultiAddinCS │ │ │ │ ├── Addin.txt │ │ │ │ ├── AssemblyInfo.txt │ │ │ │ ├── Project.txt │ │ │ │ ├── Project_User.txt │ │ │ │ ├── ReadResource.txt │ │ │ │ ├── Register.txt │ │ │ │ ├── RibbonImplement.txt │ │ │ │ ├── RibbonUI.txt │ │ │ │ ├── Solution.txt │ │ │ │ ├── TaskPane.txt │ │ │ │ ├── TaskPaneImplement.txt │ │ │ │ ├── TaskPane_Designer.txt │ │ │ │ └── UnRegister.txt │ │ │ ├── SimpleMultiAddinVB │ │ │ │ ├── Addin.txt │ │ │ │ ├── Application_Designer.txt │ │ │ │ ├── Application_myapp.txt │ │ │ │ ├── AssemblyInfo.txt │ │ │ │ ├── Project.txt │ │ │ │ ├── Project_User.txt │ │ │ │ ├── ReadResource.txt │ │ │ │ ├── Register.txt │ │ │ │ ├── Resources_Designer.txt │ │ │ │ ├── Resources_resx.txt │ │ │ │ ├── RibbonImplement.txt │ │ │ │ ├── RibbonUI.txt │ │ │ │ ├── Settings_Designer.txt │ │ │ │ ├── Settings_settings.txt │ │ │ │ ├── Solution.txt │ │ │ │ ├── TaskPane.txt │ │ │ │ ├── TaskPaneImplement.txt │ │ │ │ ├── TaskPane_Designer.txt │ │ │ │ └── UnRegister.txt │ │ │ ├── SimpleSingleAddinCS │ │ │ │ ├── Addin.txt │ │ │ │ ├── AssemblyInfo.txt │ │ │ │ ├── Project.txt │ │ │ │ ├── Project_User.txt │ │ │ │ ├── ReadResource.txt │ │ │ │ ├── Register.txt │ │ │ │ ├── RibbonImplement.txt │ │ │ │ ├── RibbonUI.txt │ │ │ │ ├── Solution.txt │ │ │ │ ├── TaskPane.txt │ │ │ │ ├── TaskPaneImplement.txt │ │ │ │ ├── TaskPane_Designer.txt │ │ │ │ └── UnRegister.txt │ │ │ ├── SimpleSingleAddinVB │ │ │ │ ├── Addin.txt │ │ │ │ ├── Application_Designer.txt │ │ │ │ ├── Application_myapp.txt │ │ │ │ ├── AssemblyInfo.txt │ │ │ │ ├── Project.txt │ │ │ │ ├── Project_User.txt │ │ │ │ ├── ReadResource.txt │ │ │ │ ├── Register.txt │ │ │ │ ├── Resources_Designer.txt │ │ │ │ ├── Resources_resx.txt │ │ │ │ ├── RibbonImplement.txt │ │ │ │ ├── RibbonUI.txt │ │ │ │ ├── Settings_Designer.txt │ │ │ │ ├── Settings_settings.txt │ │ │ │ ├── Solution.txt │ │ │ │ ├── TaskPane.txt │ │ │ │ ├── TaskPaneImplement.txt │ │ │ │ ├── TaskPane_Designer.txt │ │ │ │ └── UnRegister.txt │ │ │ ├── ToolsMultiAddinCS │ │ │ │ ├── Addin.txt │ │ │ │ ├── AssemblyInfo.txt │ │ │ │ ├── Project.txt │ │ │ │ ├── Project_User.txt │ │ │ │ ├── ReadResource.txt │ │ │ │ ├── Register.txt │ │ │ │ ├── RibbonImplement.txt │ │ │ │ ├── RibbonToogleImplement.txt │ │ │ │ ├── RibbonUI.txt │ │ │ │ ├── Solution.txt │ │ │ │ ├── TaskPane.txt │ │ │ │ ├── TaskPane_Designer.txt │ │ │ │ └── UnRegister.txt │ │ │ ├── ToolsMultiAddinVB │ │ │ │ ├── Addin.txt │ │ │ │ ├── Application_Designer.txt │ │ │ │ ├── Application_myapp.txt │ │ │ │ ├── AssemblyInfo.txt │ │ │ │ ├── Project.txt │ │ │ │ ├── Project_User.txt │ │ │ │ ├── Resources_Designer.txt │ │ │ │ ├── Resources_resx.txt │ │ │ │ ├── RibbonImplement.txt │ │ │ │ ├── RibbonToogleImplement.txt │ │ │ │ ├── RibbonUI.txt │ │ │ │ ├── Settings_Designer.txt │ │ │ │ ├── Settings_settings.txt │ │ │ │ ├── Solution.txt │ │ │ │ ├── TaskPane.txt │ │ │ │ └── TaskPane_Designer.txt │ │ │ ├── ToolsSingleAddinCS │ │ │ │ ├── Addin.txt │ │ │ │ ├── AssemblyInfo.txt │ │ │ │ ├── Project.txt │ │ │ │ ├── Project_User.txt │ │ │ │ ├── ReadResource.txt │ │ │ │ ├── Register.txt │ │ │ │ ├── RibbonImplement.txt │ │ │ │ ├── RibbonToogleImplement.txt │ │ │ │ ├── RibbonUI.txt │ │ │ │ ├── Solution.txt │ │ │ │ ├── TaskPane.txt │ │ │ │ ├── TaskPane_Designer.txt │ │ │ │ └── UnRegister.txt │ │ │ ├── ToolsSingleAddinVB │ │ │ │ ├── Addin.txt │ │ │ │ ├── Application_Designer.txt │ │ │ │ ├── Application_myapp.txt │ │ │ │ ├── AssemblyInfo.txt │ │ │ │ ├── Project.txt │ │ │ │ ├── Project_User.txt │ │ │ │ ├── Resources_Designer.txt │ │ │ │ ├── Resources_resx.txt │ │ │ │ ├── RibbonImplement.txt │ │ │ │ ├── RibbonToogleImplement.txt │ │ │ │ ├── RibbonUI.txt │ │ │ │ ├── Settings_Designer.txt │ │ │ │ ├── Settings_settings.txt │ │ │ │ ├── Solution.txt │ │ │ │ ├── TaskPane.txt │ │ │ │ └── TaskPane_Designer.txt │ │ │ ├── WindowsFormsCS │ │ │ │ ├── AssemblyInfo.txt │ │ │ │ ├── Form1.txt │ │ │ │ ├── Form1_Designer.txt │ │ │ │ ├── Program.txt │ │ │ │ ├── Project.txt │ │ │ │ ├── Resources_Designer.txt │ │ │ │ ├── Resources_resx.txt │ │ │ │ ├── Settings_Designer.txt │ │ │ │ ├── Settings_settings.txt │ │ │ │ └── Solution.txt │ │ │ └── WindowsFormsVB │ │ │ │ ├── Application_Designer.txt │ │ │ │ ├── Application_myapp.txt │ │ │ │ ├── AssemblyInfo.txt │ │ │ │ ├── Form1.txt │ │ │ │ ├── Form1_Designer.txt │ │ │ │ ├── Project.txt │ │ │ │ ├── Resources_Designer.txt │ │ │ │ ├── Resources_resx.txt │ │ │ │ ├── Settings_Designer.txt │ │ │ │ ├── Settings_settings.txt │ │ │ │ └── Solution.txt │ │ ├── ProjectWizardControl.Designer.cs │ │ ├── ProjectWizardControl.cs │ │ ├── ProjectWizardControl.resx │ │ ├── SelectProjectTypeDialog.Designer.cs │ │ ├── SelectProjectTypeDialog.cs │ │ ├── SelectProjectTypeDialog.resx │ │ ├── SelectProjectTypeDialog.txt │ │ ├── Strings.txt │ │ ├── accept.png │ │ └── settings.png │ ├── RegistryEditor │ │ ├── CLSDFOLD.ICO │ │ ├── ChangeBinaryControl.Designer.cs │ │ ├── ChangeBinaryControl.cs │ │ ├── ChangeBinaryControl.resx │ │ ├── ChangeBinaryDialog.Designer.cs │ │ ├── ChangeBinaryDialog.cs │ │ ├── ChangeBinaryDialog.resx │ │ ├── ChangeBinaryDialogMessageTable.txt │ │ ├── ChangeDWORDControl.Designer.cs │ │ ├── ChangeDWORDControl.cs │ │ ├── ChangeDWORDControl.resx │ │ ├── ChangeDWordDialog.Designer.cs │ │ ├── ChangeDWordDialog.cs │ │ ├── ChangeDWordDialog.resx │ │ ├── ChangeDWordDialogMessageTable.txt │ │ ├── ChangeNameControl.Designer.cs │ │ ├── ChangeNameControl.cs │ │ ├── ChangeNameControl.resx │ │ ├── ChangeNameDialog.Designer.cs │ │ ├── ChangeNameDialog.cs │ │ ├── ChangeNameDialog.resx │ │ ├── ChangeNameDialogMessageTable.txt │ │ ├── ChangeStringControl.Designer.cs │ │ ├── ChangeStringControl.cs │ │ ├── ChangeStringControl.resx │ │ ├── ChangeStringDialog.Designer.cs │ │ ├── ChangeStringDialog.cs │ │ ├── ChangeStringDialog.resx │ │ ├── ChangeStringDialogMessageTable.txt │ │ ├── Icon.ico │ │ ├── Info1031.rtf │ │ ├── Info1033.rtf │ │ ├── OPENFOLD.ICO │ │ ├── OtherType.ico │ │ ├── REFRESH.ICO │ │ ├── RegistryEditorControl.Designer.cs │ │ ├── RegistryEditorControl.cs │ │ ├── RegistryEditorControl.resx │ │ ├── StringType.ico │ │ ├── Strings.txt │ │ ├── Thumbs.db │ │ ├── add.png │ │ ├── delete.png │ │ ├── edit.png │ │ ├── information.png │ │ ├── recycle.png │ │ └── value_edit.png │ └── Welcome │ │ ├── Strings.txt │ │ ├── WelcomeControl.Designer.cs │ │ ├── WelcomeControl.cs │ │ ├── WelcomeControl.resx │ │ └── welcome.png │ ├── Translation │ ├── Countries.txt │ ├── ItemCollection.cs │ ├── LCIDs.txt │ ├── LanguageApplicationControl.Designer.cs │ ├── LanguageApplicationControl.cs │ ├── LanguageApplicationControl.resx │ ├── LanguageComponentsControl.Designer.cs │ ├── LanguageComponentsControl.cs │ ├── LanguageComponentsControl.resx │ ├── LanguageSummaryControl.Designer.cs │ ├── LanguageSummaryControl.cs │ ├── LanguageSummaryControl.resx │ ├── LocalizableCompoment.cs │ ├── LocalizableCompoments.cs │ ├── LocalizableRTFString.cs │ ├── LocalizableString.cs │ ├── LocalizableWideString.cs │ ├── NotifyPropertyChanged.cs │ ├── ToolDefaultLanguage.cs │ ├── ToolLanguage.cs │ ├── ToolLanguageApplication.cs │ ├── ToolLanguageControl.Designer.cs │ ├── ToolLanguageControl.cs │ ├── ToolLanguageControl.resx │ ├── ToolLanguageForm.Designer.cs │ ├── ToolLanguageForm.af.resx │ ├── ToolLanguageForm.cs │ ├── ToolLanguageForm.resx │ ├── ToolLanguages.cs │ ├── TranslationControl.Designer.cs │ ├── TranslationControl.cs │ ├── TranslationControl.resx │ └── Translator.cs │ ├── Utils │ ├── Animation │ │ ├── Colors │ │ │ ├── AnimatorBase.cs │ │ │ ├── ControlBackColorAnimator.cs │ │ │ └── ControlForeColorAnimator.cs │ │ ├── Effects │ │ │ └── EffectsAnimator.cs │ │ ├── Panel │ │ │ ├── AnimatedPanel.cs │ │ │ ├── ImageShape.cs │ │ │ └── Shape.cs │ │ └── Round │ │ │ └── RoundedRectangleRegion.cs │ ├── Native │ │ └── Win32.cs │ ├── Registry │ │ ├── UtilsRegistry.cs │ │ ├── UtilsRegistryEntries.cs │ │ ├── UtilsRegistryEntry.cs │ │ ├── UtilsRegistryKey.cs │ │ ├── UtilsRegistryKeyExporter.cs │ │ └── UtilsRegistryKeys.cs │ └── Ressources │ │ └── RessourceUtils.cs │ └── app.config └── Tutorials ├── C# ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Tutorials CSharp.sln └── Tutorials │ ├── FormMain.Designer.cs │ ├── FormMain.cs │ ├── FormMain.resx │ ├── Program.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── Tutorial01.cs │ ├── Tutorial02.cs │ ├── Tutorial03.Designer.cs │ ├── Tutorial03.cs │ ├── Tutorial03.resx │ ├── Tutorial04.cs │ ├── Tutorial05.cs │ ├── Tutorial06.cs │ ├── Tutorial07.cs │ ├── Tutorial08.cs │ ├── Tutorial09.cs │ ├── Tutorial10.cs │ ├── Tutorial11.cs │ ├── Tutorial12.cs │ ├── Tutorial13.cs │ └── Tutorials CSharp.csproj ├── TutorialsBase ├── FormBase.Designer.cs ├── FormBase.cs ├── FormBase.resx ├── FormBase.txt ├── FormError.Designer.cs ├── FormError.cs ├── FormError.resx ├── FormFinish.Designer.cs ├── FormFinish.cs ├── FormFinish.resx ├── FormOptions.Designer.cs ├── FormOptions.cs ├── FormOptions.resx ├── FormOptions.txt ├── IHost.cs ├── ITutorial.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── Translator.cs ├── TutorialForm.cs ├── TutorialsBase.csproj └── TutorialsBase.sln └── VB ├── My Project ├── Application.Designer.vb ├── Application.myapp ├── AssemblyInfo.vb ├── Resources.Designer.vb ├── Resources.resx ├── Settings.Designer.vb └── Settings.settings ├── Tutorials VB.sln └── Tutorials ├── FormMain.Designer.vb ├── FormMain.resx ├── FormMain.vb ├── My Project ├── Application.Designer.vb ├── Application.myapp ├── AssemblyInfo.vb ├── Resources.Designer.vb ├── Resources.resx ├── Settings.Designer.vb └── Settings.settings ├── Tutorial01.vb ├── Tutorial02.vb ├── Tutorial03.Designer.vb ├── Tutorial03.resx ├── Tutorial03.vb ├── Tutorial04.vb ├── Tutorial05.vb ├── Tutorial06.vb ├── Tutorial07.vb ├── Tutorial08.vb ├── Tutorial09.vb ├── Tutorial10.vb ├── Tutorial11.vb ├── Tutorial12.vb ├── Tutorial13.vb └── Tutorials VB.vbproj /BuildTools/NOBuildTools.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/BuildTools/NOBuildTools.sln -------------------------------------------------------------------------------- /BuildTools/SearchAndReplace/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/BuildTools/SearchAndReplace/Form1.cs -------------------------------------------------------------------------------- /BuildTools/SourceUpdater/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/BuildTools/SourceUpdater/Form1.cs -------------------------------------------------------------------------------- /BuildTools/SourceUpdater/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/BuildTools/SourceUpdater/Form1.resx -------------------------------------------------------------------------------- /BuildTools/SourceUpdater/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/BuildTools/SourceUpdater/Program.cs -------------------------------------------------------------------------------- /BuildTools/SourceUpdater/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/BuildTools/SourceUpdater/app.config -------------------------------------------------------------------------------- /BuildTools/VersionUpdater/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/BuildTools/VersionUpdater/Form1.cs -------------------------------------------------------------------------------- /BuildTools/VersionUpdater/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/BuildTools/VersionUpdater/Form1.resx -------------------------------------------------------------------------------- /BuildTools/VersionUpdater/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/BuildTools/VersionUpdater/Program.cs -------------------------------------------------------------------------------- /BuildTools/VersionUpdater/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/BuildTools/VersionUpdater/app.config -------------------------------------------------------------------------------- /Examples/ExampleBase/ExampleBase.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Examples/ExampleBase/ExampleBase.sln -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/README.md -------------------------------------------------------------------------------- /Source/ADODB/ADODBApi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/ADODB/ADODBApi.csproj -------------------------------------------------------------------------------- /Source/ADODB/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/ADODB/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/ADODB/Classes/Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/ADODB/Classes/Command.cs -------------------------------------------------------------------------------- /Source/ADODB/Classes/Connection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/ADODB/Classes/Connection.cs -------------------------------------------------------------------------------- /Source/ADODB/Classes/Parameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/ADODB/Classes/Parameter.cs -------------------------------------------------------------------------------- /Source/ADODB/Classes/Record.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/ADODB/Classes/Record.cs -------------------------------------------------------------------------------- /Source/ADODB/Classes/Recordset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/ADODB/Classes/Recordset.cs -------------------------------------------------------------------------------- /Source/ADODB/Classes/Stream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/ADODB/Classes/Stream.cs -------------------------------------------------------------------------------- /Source/ADODB/Enums/AffectEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/ADODB/Enums/AffectEnum.cs -------------------------------------------------------------------------------- /Source/ADODB/Enums/BookmarkEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/ADODB/Enums/BookmarkEnum.cs -------------------------------------------------------------------------------- /Source/ADODB/Enums/CEResyncEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/ADODB/Enums/CEResyncEnum.cs -------------------------------------------------------------------------------- /Source/ADODB/Enums/CompareEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/ADODB/Enums/CompareEnum.cs -------------------------------------------------------------------------------- /Source/ADODB/Enums/CursorTypeEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/ADODB/Enums/CursorTypeEnum.cs -------------------------------------------------------------------------------- /Source/ADODB/Enums/DataTypeEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/ADODB/Enums/DataTypeEnum.cs -------------------------------------------------------------------------------- /Source/ADODB/Enums/EditModeEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/ADODB/Enums/EditModeEnum.cs -------------------------------------------------------------------------------- /Source/ADODB/Enums/ErrorValueEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/ADODB/Enums/ErrorValueEnum.cs -------------------------------------------------------------------------------- /Source/ADODB/Enums/FieldEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/ADODB/Enums/FieldEnum.cs -------------------------------------------------------------------------------- /Source/ADODB/Enums/LockTypeEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/ADODB/Enums/LockTypeEnum.cs -------------------------------------------------------------------------------- /Source/ADODB/Enums/PositionEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/ADODB/Enums/PositionEnum.cs -------------------------------------------------------------------------------- /Source/ADODB/Enums/RecordTypeEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/ADODB/Enums/RecordTypeEnum.cs -------------------------------------------------------------------------------- /Source/ADODB/Enums/ResyncEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/ADODB/Enums/ResyncEnum.cs -------------------------------------------------------------------------------- /Source/ADODB/Enums/SchemaEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/ADODB/Enums/SchemaEnum.cs -------------------------------------------------------------------------------- /Source/ADODB/Enums/SeekEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/ADODB/Enums/SeekEnum.cs -------------------------------------------------------------------------------- /Source/ADODB/Enums/StreamReadEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/ADODB/Enums/StreamReadEnum.cs -------------------------------------------------------------------------------- /Source/ADODB/Enums/StreamTypeEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/ADODB/Enums/StreamTypeEnum.cs -------------------------------------------------------------------------------- /Source/ADODB/Utils/ProjectInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/ADODB/Utils/ProjectInfo.cs -------------------------------------------------------------------------------- /Source/Access/AccessApi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/AccessApi.csproj -------------------------------------------------------------------------------- /Source/Access/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/Access/Classes/AccessField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Classes/AccessField.cs -------------------------------------------------------------------------------- /Source/Access/Classes/AllForms.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Classes/AllForms.cs -------------------------------------------------------------------------------- /Source/Access/Classes/AllMacros.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Classes/AllMacros.cs -------------------------------------------------------------------------------- /Source/Access/Classes/AllModules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Classes/AllModules.cs -------------------------------------------------------------------------------- /Source/Access/Classes/AllQueries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Classes/AllQueries.cs -------------------------------------------------------------------------------- /Source/Access/Classes/AllReports.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Classes/AllReports.cs -------------------------------------------------------------------------------- /Source/Access/Classes/AllTables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Classes/AllTables.cs -------------------------------------------------------------------------------- /Source/Access/Classes/AllViews.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Classes/AllViews.cs -------------------------------------------------------------------------------- /Source/Access/Classes/Application.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Classes/Application.cs -------------------------------------------------------------------------------- /Source/Access/Classes/Attachment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Classes/Attachment.cs -------------------------------------------------------------------------------- /Source/Access/Classes/AutoCorrect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Classes/AutoCorrect.cs -------------------------------------------------------------------------------- /Source/Access/Classes/CheckBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Classes/CheckBox.cs -------------------------------------------------------------------------------- /Source/Access/Classes/Class.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Classes/Class.cs -------------------------------------------------------------------------------- /Source/Access/Classes/CodeData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Classes/CodeData.cs -------------------------------------------------------------------------------- /Source/Access/Classes/CodeProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Classes/CodeProject.cs -------------------------------------------------------------------------------- /Source/Access/Classes/ComboBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Classes/ComboBox.cs -------------------------------------------------------------------------------- /Source/Access/Classes/Control.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Classes/Control.cs -------------------------------------------------------------------------------- /Source/Access/Classes/CurrentData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Classes/CurrentData.cs -------------------------------------------------------------------------------- /Source/Access/Classes/EmptyCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Classes/EmptyCell.cs -------------------------------------------------------------------------------- /Source/Access/Classes/Form.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Classes/Form.cs -------------------------------------------------------------------------------- /Source/Access/Classes/FormOld.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Classes/FormOld.cs -------------------------------------------------------------------------------- /Source/Access/Classes/FormOldV10.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Classes/FormOldV10.cs -------------------------------------------------------------------------------- /Source/Access/Classes/GroupLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Classes/GroupLevel.cs -------------------------------------------------------------------------------- /Source/Access/Classes/Hyperlink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Classes/Hyperlink.cs -------------------------------------------------------------------------------- /Source/Access/Classes/Image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Classes/Image.cs -------------------------------------------------------------------------------- /Source/Access/Classes/Label.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Classes/Label.cs -------------------------------------------------------------------------------- /Source/Access/Classes/Line.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Classes/Line.cs -------------------------------------------------------------------------------- /Source/Access/Classes/ListBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Classes/ListBox.cs -------------------------------------------------------------------------------- /Source/Access/Classes/LocalVar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Classes/LocalVar.cs -------------------------------------------------------------------------------- /Source/Access/Classes/LocalVars.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Classes/LocalVars.cs -------------------------------------------------------------------------------- /Source/Access/Classes/MacroError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Classes/MacroError.cs -------------------------------------------------------------------------------- /Source/Access/Classes/ObjectFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Classes/ObjectFrame.cs -------------------------------------------------------------------------------- /Source/Access/Classes/OptionGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Classes/OptionGroup.cs -------------------------------------------------------------------------------- /Source/Access/Classes/Page.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Classes/Page.cs -------------------------------------------------------------------------------- /Source/Access/Classes/PageBreak.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Classes/PageBreak.cs -------------------------------------------------------------------------------- /Source/Access/Classes/Printer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Classes/Printer.cs -------------------------------------------------------------------------------- /Source/Access/Classes/Rectangle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Classes/Rectangle.cs -------------------------------------------------------------------------------- /Source/Access/Classes/References.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Classes/References.cs -------------------------------------------------------------------------------- /Source/Access/Classes/Report.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Classes/Report.cs -------------------------------------------------------------------------------- /Source/Access/Classes/ReportOld.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Classes/ReportOld.cs -------------------------------------------------------------------------------- /Source/Access/Classes/ReturnVar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Classes/ReturnVar.cs -------------------------------------------------------------------------------- /Source/Access/Classes/ReturnVars.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Classes/ReturnVars.cs -------------------------------------------------------------------------------- /Source/Access/Classes/Section.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Classes/Section.cs -------------------------------------------------------------------------------- /Source/Access/Classes/SmartTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Classes/SmartTag.cs -------------------------------------------------------------------------------- /Source/Access/Classes/SmartTags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Classes/SmartTags.cs -------------------------------------------------------------------------------- /Source/Access/Classes/SubForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Classes/SubForm.cs -------------------------------------------------------------------------------- /Source/Access/Classes/SubReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Classes/SubReport.cs -------------------------------------------------------------------------------- /Source/Access/Classes/TabControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Classes/TabControl.cs -------------------------------------------------------------------------------- /Source/Access/Classes/TempVar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Classes/TempVar.cs -------------------------------------------------------------------------------- /Source/Access/Classes/TempVars.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Classes/TempVars.cs -------------------------------------------------------------------------------- /Source/Access/Classes/TextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Classes/TextBox.cs -------------------------------------------------------------------------------- /Source/Access/Classes/WebOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Classes/WebOptions.cs -------------------------------------------------------------------------------- /Source/Access/Classes/WizHook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Classes/WizHook.cs -------------------------------------------------------------------------------- /Source/Access/Classes/_ChildLabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Classes/_ChildLabel.cs -------------------------------------------------------------------------------- /Source/Access/Constants/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Constants/Constants.cs -------------------------------------------------------------------------------- /Source/Access/Enums/AcCloseSave.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Enums/AcCloseSave.cs -------------------------------------------------------------------------------- /Source/Access/Enums/AcColorIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Enums/AcColorIndex.cs -------------------------------------------------------------------------------- /Source/Access/Enums/AcCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Enums/AcCommand.cs -------------------------------------------------------------------------------- /Source/Access/Enums/AcControlType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Enums/AcControlType.cs -------------------------------------------------------------------------------- /Source/Access/Enums/AcCurrentView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Enums/AcCurrentView.cs -------------------------------------------------------------------------------- /Source/Access/Enums/AcDefView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Enums/AcDefView.cs -------------------------------------------------------------------------------- /Source/Access/Enums/AcDisplayAs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Enums/AcDisplayAs.cs -------------------------------------------------------------------------------- /Source/Access/Enums/AcFileFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Enums/AcFileFormat.cs -------------------------------------------------------------------------------- /Source/Access/Enums/AcFilterType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Enums/AcFilterType.cs -------------------------------------------------------------------------------- /Source/Access/Enums/AcFindField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Enums/AcFindField.cs -------------------------------------------------------------------------------- /Source/Access/Enums/AcFindMatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Enums/AcFindMatch.cs -------------------------------------------------------------------------------- /Source/Access/Enums/AcFormView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Enums/AcFormView.cs -------------------------------------------------------------------------------- /Source/Access/Enums/AcImeMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Enums/AcImeMode.cs -------------------------------------------------------------------------------- /Source/Access/Enums/AcLayoutType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Enums/AcLayoutType.cs -------------------------------------------------------------------------------- /Source/Access/Enums/AcModuleType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Enums/AcModuleType.cs -------------------------------------------------------------------------------- /Source/Access/Enums/AcObjectType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Enums/AcObjectType.cs -------------------------------------------------------------------------------- /Source/Access/Enums/AcPrintColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Enums/AcPrintColor.cs -------------------------------------------------------------------------------- /Source/Access/Enums/AcPrintDuplex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Enums/AcPrintDuplex.cs -------------------------------------------------------------------------------- /Source/Access/Enums/AcPrintRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Enums/AcPrintRange.cs -------------------------------------------------------------------------------- /Source/Access/Enums/AcProjectType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Enums/AcProjectType.cs -------------------------------------------------------------------------------- /Source/Access/Enums/AcProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Enums/AcProperty.cs -------------------------------------------------------------------------------- /Source/Access/Enums/AcQuitOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Enums/AcQuitOption.cs -------------------------------------------------------------------------------- /Source/Access/Enums/AcRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Enums/AcRecord.cs -------------------------------------------------------------------------------- /Source/Access/Enums/AcSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Enums/AcSection.cs -------------------------------------------------------------------------------- /Source/Access/Enums/AcShowToolbar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Enums/AcShowToolbar.cs -------------------------------------------------------------------------------- /Source/Access/Enums/AcTextFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Enums/AcTextFormat.cs -------------------------------------------------------------------------------- /Source/Access/Enums/AcView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Enums/AcView.cs -------------------------------------------------------------------------------- /Source/Access/Enums/AcWindowMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Enums/AcWindowMode.cs -------------------------------------------------------------------------------- /Source/Access/Enums/ProcKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Enums/ProcKind.cs -------------------------------------------------------------------------------- /Source/Access/Enums/RefKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Enums/RefKind.cs -------------------------------------------------------------------------------- /Source/Access/Interfaces/__Help.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Interfaces/__Help.cs -------------------------------------------------------------------------------- /Source/Access/Modules/Global.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Modules/Global.cs -------------------------------------------------------------------------------- /Source/Access/Tools/COMAddin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Tools/COMAddin.cs -------------------------------------------------------------------------------- /Source/Access/Tools/ITaskPane.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Tools/ITaskPane.cs -------------------------------------------------------------------------------- /Source/Access/Utils/ProjectInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Access/Utils/ProjectInfo.cs -------------------------------------------------------------------------------- /Source/ClientApplication/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/ClientApplication/Form1.cs -------------------------------------------------------------------------------- /Source/ClientApplication/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/ClientApplication/Form1.resx -------------------------------------------------------------------------------- /Source/ClientApplication/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/ClientApplication/Program.cs -------------------------------------------------------------------------------- /Source/ClientApplication/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/ClientApplication/app.config -------------------------------------------------------------------------------- /Source/DAO/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/DAO/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/DAO/Classes/DBEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/DAO/Classes/DBEngine.cs -------------------------------------------------------------------------------- /Source/DAO/Classes/Field.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/DAO/Classes/Field.cs -------------------------------------------------------------------------------- /Source/DAO/Classes/Group.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/DAO/Classes/Group.cs -------------------------------------------------------------------------------- /Source/DAO/Classes/Index.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/DAO/Classes/Index.cs -------------------------------------------------------------------------------- /Source/DAO/Classes/PrivDBEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/DAO/Classes/PrivDBEngine.cs -------------------------------------------------------------------------------- /Source/DAO/Classes/QueryDef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/DAO/Classes/QueryDef.cs -------------------------------------------------------------------------------- /Source/DAO/Classes/Relation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/DAO/Classes/Relation.cs -------------------------------------------------------------------------------- /Source/DAO/Classes/TableDef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/DAO/Classes/TableDef.cs -------------------------------------------------------------------------------- /Source/DAO/Classes/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/DAO/Classes/User.cs -------------------------------------------------------------------------------- /Source/DAO/DAOApi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/DAO/DAOApi.csproj -------------------------------------------------------------------------------- /Source/DAO/Enums/CursorDriverEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/DAO/Enums/CursorDriverEnum.cs -------------------------------------------------------------------------------- /Source/DAO/Enums/DataTypeEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/DAO/Enums/DataTypeEnum.cs -------------------------------------------------------------------------------- /Source/DAO/Enums/DatabaseTypeEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/DAO/Enums/DatabaseTypeEnum.cs -------------------------------------------------------------------------------- /Source/DAO/Enums/DriverPromptEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/DAO/Enums/DriverPromptEnum.cs -------------------------------------------------------------------------------- /Source/DAO/Enums/EditModeEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/DAO/Enums/EditModeEnum.cs -------------------------------------------------------------------------------- /Source/DAO/Enums/IdleEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/DAO/Enums/IdleEnum.cs -------------------------------------------------------------------------------- /Source/DAO/Enums/LockTypeEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/DAO/Enums/LockTypeEnum.cs -------------------------------------------------------------------------------- /Source/DAO/Enums/PermissionEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/DAO/Enums/PermissionEnum.cs -------------------------------------------------------------------------------- /Source/DAO/Enums/QueryDefTypeEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/DAO/Enums/QueryDefTypeEnum.cs -------------------------------------------------------------------------------- /Source/DAO/Enums/RecordStatusEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/DAO/Enums/RecordStatusEnum.cs -------------------------------------------------------------------------------- /Source/DAO/Enums/ReplicaTypeEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/DAO/Enums/ReplicaTypeEnum.cs -------------------------------------------------------------------------------- /Source/DAO/Enums/SetOptionEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/DAO/Enums/SetOptionEnum.cs -------------------------------------------------------------------------------- /Source/DAO/Enums/UpdateTypeEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/DAO/Enums/UpdateTypeEnum.cs -------------------------------------------------------------------------------- /Source/DAO/Enums/_DAOSuppHelp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/DAO/Enums/_DAOSuppHelp.cs -------------------------------------------------------------------------------- /Source/DAO/Modules/Global.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/DAO/Modules/Global.cs -------------------------------------------------------------------------------- /Source/DAO/Utils/ProjectInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/DAO/Utils/ProjectInfo.cs -------------------------------------------------------------------------------- /Source/Excel/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/Excel/Classes/Application.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Classes/Application.cs -------------------------------------------------------------------------------- /Source/Excel/Classes/Chart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Classes/Chart.cs -------------------------------------------------------------------------------- /Source/Excel/Classes/OLEObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Classes/OLEObject.cs -------------------------------------------------------------------------------- /Source/Excel/Classes/QueryTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Classes/QueryTable.cs -------------------------------------------------------------------------------- /Source/Excel/Classes/Workbook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Classes/Workbook.cs -------------------------------------------------------------------------------- /Source/Excel/Classes/Worksheet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Classes/Worksheet.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/Constants.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlAboveBelow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlAboveBelow.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlActionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlActionType.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlAllocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlAllocation.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlArabicModes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlArabicModes.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlArrangeStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlArrangeStyle.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlAutoFillType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlAutoFillType.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlAxisCrosses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlAxisCrosses.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlAxisGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlAxisGroup.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlAxisType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlAxisType.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlBackground.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlBackground.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlBarShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlBarShape.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlBorderWeight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlBorderWeight.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlBordersIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlBordersIndex.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlCVError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlCVError.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlCalcFor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlCalcFor.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlCalculation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlCalculation.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlCategoryType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlCategoryType.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlCellType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlCellType.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlChartGallery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlChartGallery.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlChartItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlChartItem.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlChartType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlChartType.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlCmdType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlCmdType.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlColorIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlColorIndex.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlCorruptLoad.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlCorruptLoad.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlCreator.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlCutCopyMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlCutCopyMode.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlDVAlertStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlDVAlertStyle.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlDVType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlDVType.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlDirection.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlDisplayUnit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlDisplayUnit.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlDupeUnique.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlDupeUnique.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlEditionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlEditionType.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlEndStyleCap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlEndStyleCap.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlErrorBarType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlErrorBarType.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlErrorChecks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlErrorChecks.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlFileAccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlFileAccess.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlFileFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlFileFormat.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlFillWith.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlFillWith.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlFilterAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlFilterAction.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlFilterStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlFilterStatus.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlFindLookIn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlFindLookIn.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlFormControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlFormControl.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlFormulaLabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlFormulaLabel.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlHAlign.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlHAlign.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlHebrewModes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlHebrewModes.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlHtmlType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlHtmlType.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlIMEMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlIMEMode.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlIcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlIcon.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlIconSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlIconSet.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlImportDataAs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlImportDataAs.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlLineStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlLineStyle.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlLink.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlLinkInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlLinkInfo.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlLinkInfoType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlLinkInfoType.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlLinkStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlLinkStatus.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlLinkType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlLinkType.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlListConflict.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlListConflict.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlListDataType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlListDataType.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlLookAt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlLookAt.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlLookFor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlLookFor.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlMailSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlMailSystem.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlMarkerStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlMarkerStyle.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlMouseButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlMouseButton.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlMousePointer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlMousePointer.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlOLEType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlOLEType.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlOLEVerb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlOLEVerb.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlObjectSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlObjectSize.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlOrder.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlOrientation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlOrientation.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlPageBreak.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlPageBreak.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlPaperSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlPaperSize.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlPasteType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlPasteType.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlPattern.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlPattern.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlPlacement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlPlacement.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlPlatform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlPlatform.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlPrintErrors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlPrintErrors.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlPriority.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlPriority.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlRgbColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlRgbColor.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlRowCol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlRowCol.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlRunAutoMacro.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlRunAutoMacro.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlSaveAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlSaveAction.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlScaleType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlScaleType.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlSearchOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlSearchOrder.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlSearchWithin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlSearchWithin.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlSheetType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlSheetType.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlSlicerSort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlSlicerSort.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlSortMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlSortMethod.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlSortOn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlSortOn.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlSortOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlSortOrder.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlSortType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlSortType.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlSourceType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlSourceType.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlSpanishModes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlSpanishModes.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlSparkScale.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlSparkScale.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlSparkType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlSparkType.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlSummaryRow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlSummaryRow.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlTabPosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlTabPosition.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlThemeColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlThemeColor.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlThemeFont.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlThemeFont.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlThreadMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlThreadMode.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlTickMark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlTickMark.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlTimeMoving.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlTimeMoving.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlTimePeriods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlTimePeriods.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlTimeUnit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlTimeUnit.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlTopBottom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlTopBottom.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlUpdateLinks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlUpdateLinks.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlVAlign.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlVAlign.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlWBATemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlWBATemplate.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlWindowState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlWindowState.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlWindowType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlWindowType.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlWindowView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlWindowView.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlXLMMacroType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlXLMMacroType.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/XlYesNoGuess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/XlYesNoGuess.cs -------------------------------------------------------------------------------- /Source/Excel/Enums/xlQueryType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Enums/xlQueryType.cs -------------------------------------------------------------------------------- /Source/Excel/ExcelApi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/ExcelApi.csproj -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IAction.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IActions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IActions.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IAddIn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IAddIn.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IAddIns.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IAddIns.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IAddIns2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IAddIns2.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IArc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IArc.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IArcs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IArcs.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IAreas.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IAreas.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IAxes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IAxes.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IAxis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IAxis.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IBorder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IBorder.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IBorders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IBorders.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IButton.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IButtons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IButtons.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/ICharts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/ICharts.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/ICheckBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/ICheckBox.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IComment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IComment.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IComments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IComments.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/ICorners.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/ICorners.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IDatabar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IDatabar.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IDiagram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IDiagram.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IDialog.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IDialogs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IDialogs.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IDownBars.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IDownBars.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IDrawing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IDrawing.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IDrawings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IDrawings.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IDropDown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IDropDown.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IDummy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IDummy.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IEditBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IEditBox.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IError.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IErrors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IErrors.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IFilter.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IFilters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IFilters.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IFloor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IFloor.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IFont.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IFont.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IGraphic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IGraphic.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IGroupBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IGroupBox.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IIcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IIcon.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IIconSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IIconSet.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IIconSets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IIconSets.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IInterior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IInterior.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/ILabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/ILabel.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/ILabels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/ILabels.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/ILegend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/ILegend.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/ILine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/ILine.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/ILines.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/ILines.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IListBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IListBox.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IListRow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IListRow.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IListRows.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IListRows.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IMailer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IMailer.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IMenu.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IMenuBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IMenuBar.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IMenuBars.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IMenuBars.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IMenuItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IMenuItem.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IMenus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IMenus.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IModel.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IModule.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IModules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IModules.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IName.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/INames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/INames.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IOutline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IOutline.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IOval.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IOval.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IOvals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IOvals.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IPage.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IPages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IPages.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IPane.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IPane.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IPanes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IPanes.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IPhonetic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IPhonetic.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IPicture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IPicture.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IPictures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IPictures.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IPlotArea.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IPlotArea.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IPoint.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IPoints.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IPoints.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IRTD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IRTD.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IRange.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IRanges.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IRanges.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IResearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IResearch.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IScenario.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IScenario.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/ISeries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/ISeries.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IShape.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IShapes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IShapes.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/ISlicer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/ISlicer.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/ISlicers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/ISlicers.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/ISmartTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/ISmartTag.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/ISort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/ISort.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/ISpeech.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/ISpeech.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/ISpinner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/ISpinner.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/ISpinners.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/ISpinners.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IStyle.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IStyles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IStyles.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/ITab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/ITab.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/ITextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/ITextBox.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IToolbar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IToolbar.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IToolbars.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IToolbars.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/ITop10.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/ITop10.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IUpBars.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IUpBars.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IWalls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IWalls.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IWatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IWatch.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IWindow.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IXPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IXPath.cs -------------------------------------------------------------------------------- /Source/Excel/Interfaces/IXmlMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Interfaces/IXmlMap.cs -------------------------------------------------------------------------------- /Source/Excel/Modules/Global.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Modules/Global.cs -------------------------------------------------------------------------------- /Source/Excel/Tools/COMAddin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Tools/COMAddin.cs -------------------------------------------------------------------------------- /Source/Excel/Tools/ITaskPane.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Tools/ITaskPane.cs -------------------------------------------------------------------------------- /Source/Excel/Utils/ProjectInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Excel/Utils/ProjectInfo.cs -------------------------------------------------------------------------------- /Source/MSComctlLib/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSComctlLib/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/MSComctlLib/Classes/Node.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSComctlLib/Classes/Node.cs -------------------------------------------------------------------------------- /Source/MSComctlLib/Classes/Tab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSComctlLib/Classes/Tab.cs -------------------------------------------------------------------------------- /Source/MSComctlLib/Classes/Tabs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSComctlLib/Classes/Tabs.cs -------------------------------------------------------------------------------- /Source/MSDATASRC/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSDATASRC/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/MSForms/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSForms/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/MSForms/Classes/CheckBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSForms/Classes/CheckBox.cs -------------------------------------------------------------------------------- /Source/MSForms/Classes/ComboBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSForms/Classes/ComboBox.cs -------------------------------------------------------------------------------- /Source/MSForms/Classes/Control.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSForms/Classes/Control.cs -------------------------------------------------------------------------------- /Source/MSForms/Classes/Frame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSForms/Classes/Frame.cs -------------------------------------------------------------------------------- /Source/MSForms/Classes/HTMLText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSForms/Classes/HTMLText.cs -------------------------------------------------------------------------------- /Source/MSForms/Classes/Image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSForms/Classes/Image.cs -------------------------------------------------------------------------------- /Source/MSForms/Classes/Label.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSForms/Classes/Label.cs -------------------------------------------------------------------------------- /Source/MSForms/Classes/ListBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSForms/Classes/ListBox.cs -------------------------------------------------------------------------------- /Source/MSForms/Classes/NewFont.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSForms/Classes/NewFont.cs -------------------------------------------------------------------------------- /Source/MSForms/Classes/Page.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSForms/Classes/Page.cs -------------------------------------------------------------------------------- /Source/MSForms/Classes/TabStrip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSForms/Classes/TabStrip.cs -------------------------------------------------------------------------------- /Source/MSForms/Classes/TextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSForms/Classes/TextBox.cs -------------------------------------------------------------------------------- /Source/MSForms/Classes/UserForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSForms/Classes/UserForm.cs -------------------------------------------------------------------------------- /Source/MSForms/Enums/fmAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSForms/Enums/fmAction.cs -------------------------------------------------------------------------------- /Source/MSForms/Enums/fmBorders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSForms/Enums/fmBorders.cs -------------------------------------------------------------------------------- /Source/MSForms/Enums/fmCycle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSForms/Enums/fmCycle.cs -------------------------------------------------------------------------------- /Source/MSForms/Enums/fmIMEMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSForms/Enums/fmIMEMode.cs -------------------------------------------------------------------------------- /Source/MSForms/Enums/fmMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSForms/Enums/fmMode.cs -------------------------------------------------------------------------------- /Source/MSForms/Enums/fmStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSForms/Enums/fmStyle.cs -------------------------------------------------------------------------------- /Source/MSForms/Enums/fmTabStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSForms/Enums/fmTabStyle.cs -------------------------------------------------------------------------------- /Source/MSForms/Enums/fmZOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSForms/Enums/fmZOrder.cs -------------------------------------------------------------------------------- /Source/MSForms/Interfaces/IFont.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSForms/Interfaces/IFont.cs -------------------------------------------------------------------------------- /Source/MSForms/MSFormsApi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSForms/MSFormsApi.csproj -------------------------------------------------------------------------------- /Source/MSHTML/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSHTML/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/MSHTML/Classes/CEventObj.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSHTML/Classes/CEventObj.cs -------------------------------------------------------------------------------- /Source/MSHTML/Classes/CPlugins.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSHTML/Classes/CPlugins.cs -------------------------------------------------------------------------------- /Source/MSHTML/Classes/FontNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSHTML/Classes/FontNames.cs -------------------------------------------------------------------------------- /Source/MSHTML/Classes/HTMLBody.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSHTML/Classes/HTMLBody.cs -------------------------------------------------------------------------------- /Source/MSHTML/Classes/HTMLEmbed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSHTML/Classes/HTMLEmbed.cs -------------------------------------------------------------------------------- /Source/MSHTML/Classes/HTMLImg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSHTML/Classes/HTMLImg.cs -------------------------------------------------------------------------------- /Source/MSHTML/Classes/HTMLPopup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSHTML/Classes/HTMLPopup.cs -------------------------------------------------------------------------------- /Source/MSHTML/Classes/HTMLStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSHTML/Classes/HTMLStyle.cs -------------------------------------------------------------------------------- /Source/MSHTML/Classes/HTMLTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSHTML/Classes/HTMLTable.cs -------------------------------------------------------------------------------- /Source/MSHTML/Classes/Scriptlet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSHTML/Classes/Scriptlet.cs -------------------------------------------------------------------------------- /Source/MSHTML/Enums/_BoolValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSHTML/Enums/_BoolValue.cs -------------------------------------------------------------------------------- /Source/MSHTML/Enums/_HTMLBorder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSHTML/Enums/_HTMLBorder.cs -------------------------------------------------------------------------------- /Source/MSHTML/Enums/_HT_OPTIONS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSHTML/Enums/_HT_OPTIONS.cs -------------------------------------------------------------------------------- /Source/MSHTML/Enums/_HT_RESULTS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSHTML/Enums/_HT_RESULTS.cs -------------------------------------------------------------------------------- /Source/MSHTML/Enums/_bodyScroll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSHTML/Enums/_bodyScroll.cs -------------------------------------------------------------------------------- /Source/MSHTML/Enums/_htmlClear.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSHTML/Enums/_htmlClear.cs -------------------------------------------------------------------------------- /Source/MSHTML/Enums/_htmlDir.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSHTML/Enums/_htmlDir.cs -------------------------------------------------------------------------------- /Source/MSHTML/Enums/_htmlFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSHTML/Enums/_htmlFrame.cs -------------------------------------------------------------------------------- /Source/MSHTML/Enums/_htmlInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSHTML/Enums/_htmlInput.cs -------------------------------------------------------------------------------- /Source/MSHTML/Enums/_htmlLoop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSHTML/Enums/_htmlLoop.cs -------------------------------------------------------------------------------- /Source/MSHTML/Enums/_htmlMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSHTML/Enums/_htmlMethod.cs -------------------------------------------------------------------------------- /Source/MSHTML/Enums/_htmlRules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSHTML/Enums/_htmlRules.cs -------------------------------------------------------------------------------- /Source/MSHTML/Enums/_htmlStart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSHTML/Enums/_htmlStart.cs -------------------------------------------------------------------------------- /Source/MSHTML/Enums/_htmlUnit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSHTML/Enums/_htmlUnit.cs -------------------------------------------------------------------------------- /Source/MSHTML/Enums/_htmlWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSHTML/Enums/_htmlWrap.cs -------------------------------------------------------------------------------- /Source/MSHTML/Enums/_htmlZOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSHTML/Enums/_htmlZOrder.cs -------------------------------------------------------------------------------- /Source/MSHTML/Enums/_mediaType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSHTML/Enums/_mediaType.cs -------------------------------------------------------------------------------- /Source/MSHTML/Enums/_styleAuto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSHTML/Enums/_styleAuto.cs -------------------------------------------------------------------------------- /Source/MSHTML/Enums/_styleBidi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSHTML/Enums/_styleBidi.cs -------------------------------------------------------------------------------- /Source/MSHTML/Enums/_styleBool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSHTML/Enums/_styleBool.cs -------------------------------------------------------------------------------- /Source/MSHTML/Enums/_styleDir.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSHTML/Enums/_styleDir.cs -------------------------------------------------------------------------------- /Source/MSHTML/Enums/_styleNone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSHTML/Enums/_styleNone.cs -------------------------------------------------------------------------------- /Source/MSHTML/MSHTMLApi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSHTML/MSHTMLApi.csproj -------------------------------------------------------------------------------- /Source/MSHTML/Records/tagPOINT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSHTML/Records/tagPOINT.cs -------------------------------------------------------------------------------- /Source/MSHTML/Records/tagRECT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSHTML/Records/tagRECT.cs -------------------------------------------------------------------------------- /Source/MSHTML/Records/tagSIZE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSHTML/Records/tagSIZE.cs -------------------------------------------------------------------------------- /Source/MSHTML/Records/wireHDC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSHTML/Records/wireHDC.cs -------------------------------------------------------------------------------- /Source/MSHTML/Records/wireHRGN.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSHTML/Records/wireHRGN.cs -------------------------------------------------------------------------------- /Source/MSHTML/Records/wireHWND.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSHTML/Records/wireHWND.cs -------------------------------------------------------------------------------- /Source/MSHTML/Utils/ProjectInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSHTML/Utils/ProjectInfo.cs -------------------------------------------------------------------------------- /Source/MSProject/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSProject/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/MSProject/Enums/PjAlign.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSProject/Enums/PjAlign.cs -------------------------------------------------------------------------------- /Source/MSProject/Enums/PjBorder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSProject/Enums/PjBorder.cs -------------------------------------------------------------------------------- /Source/MSProject/Enums/PjBoxSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSProject/Enums/PjBoxSet.cs -------------------------------------------------------------------------------- /Source/MSProject/Enums/PjCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSProject/Enums/PjCell.cs -------------------------------------------------------------------------------- /Source/MSProject/Enums/PjColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSProject/Enums/PjColor.cs -------------------------------------------------------------------------------- /Source/MSProject/Enums/PjDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSProject/Enums/PjDialog.cs -------------------------------------------------------------------------------- /Source/MSProject/Enums/PjField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSProject/Enums/PjField.cs -------------------------------------------------------------------------------- /Source/MSProject/Enums/PjLegend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSProject/Enums/PjLegend.cs -------------------------------------------------------------------------------- /Source/MSProject/Enums/PjMonth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSProject/Enums/PjMonth.cs -------------------------------------------------------------------------------- /Source/MSProject/Enums/PjShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSProject/Enums/PjShape.cs -------------------------------------------------------------------------------- /Source/MSProject/Enums/PjUnit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSProject/Enums/PjUnit.cs -------------------------------------------------------------------------------- /Source/MSProject/Modules/Global.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSProject/Modules/Global.cs -------------------------------------------------------------------------------- /Source/MSProject/Tools/COMAddin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/MSProject/Tools/COMAddin.cs -------------------------------------------------------------------------------- /Source/NetOffice.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/NetOffice.sln -------------------------------------------------------------------------------- /Source/NetOffice/COMObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/NetOffice/COMObject.cs -------------------------------------------------------------------------------- /Source/NetOffice/CacheOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/NetOffice/CacheOptions.cs -------------------------------------------------------------------------------- /Source/NetOffice/Core.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/NetOffice/Core.cs -------------------------------------------------------------------------------- /Source/NetOffice/DebugConsole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/NetOffice/DebugConsole.cs -------------------------------------------------------------------------------- /Source/NetOffice/Factory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/NetOffice/Factory.cs -------------------------------------------------------------------------------- /Source/NetOffice/Invoker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/NetOffice/Invoker.cs -------------------------------------------------------------------------------- /Source/NetOffice/KeyTokens.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/NetOffice/KeyTokens.txt -------------------------------------------------------------------------------- /Source/NetOffice/NetOffice.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/NetOffice/NetOffice.csproj -------------------------------------------------------------------------------- /Source/NetOffice/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/NetOffice/Settings.cs -------------------------------------------------------------------------------- /Source/NetOffice/SinkHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/NetOffice/SinkHelper.cs -------------------------------------------------------------------------------- /Source/NetOffice/Tools/Tweaks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/NetOffice/Tools/Tweaks.cs -------------------------------------------------------------------------------- /Source/NetOffice/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/NetOffice/Utils.cs -------------------------------------------------------------------------------- /Source/NetOffice/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/NetOffice/app.config -------------------------------------------------------------------------------- /Source/OWC10/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/OWC10/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/OWC10/Classes/ChartSpace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/OWC10/Classes/ChartSpace.cs -------------------------------------------------------------------------------- /Source/OWC10/Classes/PivotTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/OWC10/Classes/PivotTable.cs -------------------------------------------------------------------------------- /Source/OWC10/Classes/Range.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/OWC10/Classes/Range.cs -------------------------------------------------------------------------------- /Source/OWC10/Enums/DaAttrEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/OWC10/Enums/DaAttrEnum.cs -------------------------------------------------------------------------------- /Source/OWC10/Enums/OCCommandId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/OWC10/Enums/OCCommandId.cs -------------------------------------------------------------------------------- /Source/OWC10/Enums/ProviderType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/OWC10/Enums/ProviderType.cs -------------------------------------------------------------------------------- /Source/OWC10/Enums/RefreshType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/OWC10/Enums/RefreshType.cs -------------------------------------------------------------------------------- /Source/OWC10/Enums/SectTypeEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/OWC10/Enums/SectTypeEnum.cs -------------------------------------------------------------------------------- /Source/OWC10/Enums/TipTypeEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/OWC10/Enums/TipTypeEnum.cs -------------------------------------------------------------------------------- /Source/OWC10/Enums/XlColorIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/OWC10/Enums/XlColorIndex.cs -------------------------------------------------------------------------------- /Source/OWC10/Enums/XlConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/OWC10/Enums/XlConstants.cs -------------------------------------------------------------------------------- /Source/OWC10/Enums/XlDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/OWC10/Enums/XlDirection.cs -------------------------------------------------------------------------------- /Source/OWC10/Enums/XlFindLookIn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/OWC10/Enums/XlFindLookIn.cs -------------------------------------------------------------------------------- /Source/OWC10/Enums/XlHAlign.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/OWC10/Enums/XlHAlign.cs -------------------------------------------------------------------------------- /Source/OWC10/Enums/XlLineStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/OWC10/Enums/XlLineStyle.cs -------------------------------------------------------------------------------- /Source/OWC10/Enums/XlLookAt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/OWC10/Enums/XlLookAt.cs -------------------------------------------------------------------------------- /Source/OWC10/Enums/XlSheetType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/OWC10/Enums/XlSheetType.cs -------------------------------------------------------------------------------- /Source/OWC10/Enums/XlSortOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/OWC10/Enums/XlSortOrder.cs -------------------------------------------------------------------------------- /Source/OWC10/Enums/XlVAlign.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/OWC10/Enums/XlVAlign.cs -------------------------------------------------------------------------------- /Source/OWC10/Enums/XlWindowType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/OWC10/Enums/XlWindowType.cs -------------------------------------------------------------------------------- /Source/OWC10/Enums/XlYesNoGuess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/OWC10/Enums/XlYesNoGuess.cs -------------------------------------------------------------------------------- /Source/OWC10/Interfaces/OCDirty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/OWC10/Interfaces/OCDirty.cs -------------------------------------------------------------------------------- /Source/OWC10/OWC10Api.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/OWC10/OWC10Api.csproj -------------------------------------------------------------------------------- /Source/OWC10/Utils/ProjectInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/OWC10/Utils/ProjectInfo.cs -------------------------------------------------------------------------------- /Source/Office/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Office/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/Office/Enums/MailFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Office/Enums/MailFormat.cs -------------------------------------------------------------------------------- /Source/Office/Enums/MsoAlignCmd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Office/Enums/MsoAlignCmd.cs -------------------------------------------------------------------------------- /Source/Office/Enums/MsoAutoSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Office/Enums/MsoAutoSize.cs -------------------------------------------------------------------------------- /Source/Office/Enums/MsoBarRow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Office/Enums/MsoBarRow.cs -------------------------------------------------------------------------------- /Source/Office/Enums/MsoBarType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Office/Enums/MsoBarType.cs -------------------------------------------------------------------------------- /Source/Office/Enums/MsoEncoding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Office/Enums/MsoEncoding.cs -------------------------------------------------------------------------------- /Source/Office/Enums/MsoFileType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Office/Enums/MsoFileType.cs -------------------------------------------------------------------------------- /Source/Office/Enums/MsoFillType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Office/Enums/MsoFillType.cs -------------------------------------------------------------------------------- /Source/Office/Enums/MsoFlipCmd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Office/Enums/MsoFlipCmd.cs -------------------------------------------------------------------------------- /Source/Office/Enums/MsoIconType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Office/Enums/MsoIconType.cs -------------------------------------------------------------------------------- /Source/Office/Enums/MsoIodGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Office/Enums/MsoIodGroup.cs -------------------------------------------------------------------------------- /Source/Office/Enums/MsoMergeCmd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Office/Enums/MsoMergeCmd.cs -------------------------------------------------------------------------------- /Source/Office/Enums/MsoModeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Office/Enums/MsoModeType.cs -------------------------------------------------------------------------------- /Source/Office/Enums/MsoMoveRow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Office/Enums/MsoMoveRow.cs -------------------------------------------------------------------------------- /Source/Office/Enums/MsoSearchIn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Office/Enums/MsoSearchIn.cs -------------------------------------------------------------------------------- /Source/Office/Enums/MsoSortBy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Office/Enums/MsoSortBy.cs -------------------------------------------------------------------------------- /Source/Office/Enums/MsoTextCaps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Office/Enums/MsoTextCaps.cs -------------------------------------------------------------------------------- /Source/Office/Enums/MsoTriState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Office/Enums/MsoTriState.cs -------------------------------------------------------------------------------- /Source/Office/Enums/XlAxisGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Office/Enums/XlAxisGroup.cs -------------------------------------------------------------------------------- /Source/Office/Enums/XlAxisType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Office/Enums/XlAxisType.cs -------------------------------------------------------------------------------- /Source/Office/Enums/XlBarShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Office/Enums/XlBarShape.cs -------------------------------------------------------------------------------- /Source/Office/Enums/XlChartItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Office/Enums/XlChartItem.cs -------------------------------------------------------------------------------- /Source/Office/Enums/XlChartType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Office/Enums/XlChartType.cs -------------------------------------------------------------------------------- /Source/Office/Enums/XlConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Office/Enums/XlConstants.cs -------------------------------------------------------------------------------- /Source/Office/Enums/XlHAlign.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Office/Enums/XlHAlign.cs -------------------------------------------------------------------------------- /Source/Office/Enums/XlRowCol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Office/Enums/XlRowCol.cs -------------------------------------------------------------------------------- /Source/Office/Enums/XlScaleType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Office/Enums/XlScaleType.cs -------------------------------------------------------------------------------- /Source/Office/Enums/XlTickMark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Office/Enums/XlTickMark.cs -------------------------------------------------------------------------------- /Source/Office/Enums/XlTimeUnit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Office/Enums/XlTimeUnit.cs -------------------------------------------------------------------------------- /Source/Office/Enums/XlVAlign.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Office/Enums/XlVAlign.cs -------------------------------------------------------------------------------- /Source/Office/Interfaces/Points.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Office/Interfaces/Points.cs -------------------------------------------------------------------------------- /Source/Office/OfficeApi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Office/OfficeApi.csproj -------------------------------------------------------------------------------- /Source/Office/Tools/COMAddin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Office/Tools/COMAddin.cs -------------------------------------------------------------------------------- /Source/Office/Tools/ITaskPane.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Office/Tools/ITaskPane.cs -------------------------------------------------------------------------------- /Source/Office/Utils/ProjectInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Office/Utils/ProjectInfo.cs -------------------------------------------------------------------------------- /Source/Outlook/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Outlook/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/Outlook/Classes/Account.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Outlook/Classes/Account.cs -------------------------------------------------------------------------------- /Source/Outlook/Classes/Accounts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Outlook/Classes/Accounts.cs -------------------------------------------------------------------------------- /Source/Outlook/Classes/CardView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Outlook/Classes/CardView.cs -------------------------------------------------------------------------------- /Source/Outlook/Classes/Category.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Outlook/Classes/Category.cs -------------------------------------------------------------------------------- /Source/Outlook/Classes/Column.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Outlook/Classes/Column.cs -------------------------------------------------------------------------------- /Source/Outlook/Classes/Columns.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Outlook/Classes/Columns.cs -------------------------------------------------------------------------------- /Source/Outlook/Classes/Explorer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Outlook/Classes/Explorer.cs -------------------------------------------------------------------------------- /Source/Outlook/Classes/Folder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Outlook/Classes/Folder.cs -------------------------------------------------------------------------------- /Source/Outlook/Classes/Folders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Outlook/Classes/Folders.cs -------------------------------------------------------------------------------- /Source/Outlook/Classes/IconView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Outlook/Classes/IconView.cs -------------------------------------------------------------------------------- /Source/Outlook/Classes/Items.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Outlook/Classes/Items.cs -------------------------------------------------------------------------------- /Source/Outlook/Classes/MailItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Outlook/Classes/MailItem.cs -------------------------------------------------------------------------------- /Source/Outlook/Classes/NoteItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Outlook/Classes/NoteItem.cs -------------------------------------------------------------------------------- /Source/Outlook/Classes/OlkLabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Outlook/Classes/OlkLabel.cs -------------------------------------------------------------------------------- /Source/Outlook/Classes/PostItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Outlook/Classes/PostItem.cs -------------------------------------------------------------------------------- /Source/Outlook/Classes/Reminder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Outlook/Classes/Reminder.cs -------------------------------------------------------------------------------- /Source/Outlook/Classes/Results.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Outlook/Classes/Results.cs -------------------------------------------------------------------------------- /Source/Outlook/Classes/Row.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Outlook/Classes/Row.cs -------------------------------------------------------------------------------- /Source/Outlook/Classes/Rule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Outlook/Classes/Rule.cs -------------------------------------------------------------------------------- /Source/Outlook/Classes/Rules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Outlook/Classes/Rules.cs -------------------------------------------------------------------------------- /Source/Outlook/Classes/Store.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Outlook/Classes/Store.cs -------------------------------------------------------------------------------- /Source/Outlook/Classes/Stores.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Outlook/Classes/Stores.cs -------------------------------------------------------------------------------- /Source/Outlook/Classes/Table.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Outlook/Classes/Table.cs -------------------------------------------------------------------------------- /Source/Outlook/Classes/TaskItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Outlook/Classes/TaskItem.cs -------------------------------------------------------------------------------- /Source/Outlook/Classes/TimeZone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Outlook/Classes/TimeZone.cs -------------------------------------------------------------------------------- /Source/Outlook/Classes/ViewFont.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Outlook/Classes/ViewFont.cs -------------------------------------------------------------------------------- /Source/Outlook/Classes/Views.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Outlook/Classes/Views.cs -------------------------------------------------------------------------------- /Source/Outlook/Classes/_DpxCtrl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Outlook/Classes/_DpxCtrl.cs -------------------------------------------------------------------------------- /Source/Outlook/Enums/OlAlign.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Outlook/Enums/OlAlign.cs -------------------------------------------------------------------------------- /Source/Outlook/Enums/OlColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Outlook/Enums/OlColor.cs -------------------------------------------------------------------------------- /Source/Outlook/Enums/OlFlagIcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Outlook/Enums/OlFlagIcon.cs -------------------------------------------------------------------------------- /Source/Outlook/Enums/OlGender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Outlook/Enums/OlGender.cs -------------------------------------------------------------------------------- /Source/Outlook/Enums/OlItemType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Outlook/Enums/OlItemType.cs -------------------------------------------------------------------------------- /Source/Outlook/Enums/OlPageType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Outlook/Enums/OlPageType.cs -------------------------------------------------------------------------------- /Source/Outlook/Enums/OlPane.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Outlook/Enums/OlPane.cs -------------------------------------------------------------------------------- /Source/Outlook/Enums/OlRuleType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Outlook/Enums/OlRuleType.cs -------------------------------------------------------------------------------- /Source/Outlook/Enums/OlViewType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Outlook/Enums/OlViewType.cs -------------------------------------------------------------------------------- /Source/Outlook/Modules/Global.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Outlook/Modules/Global.cs -------------------------------------------------------------------------------- /Source/Outlook/OutlookApi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Outlook/OutlookApi.csproj -------------------------------------------------------------------------------- /Source/Outlook/Tools/COMAddin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Outlook/Tools/COMAddin.cs -------------------------------------------------------------------------------- /Source/Outlook/Tools/ITaskPane.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Outlook/Tools/ITaskPane.cs -------------------------------------------------------------------------------- /Source/PowerPoint/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/PowerPoint/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/PowerPoint/Classes/Slide.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/PowerPoint/Classes/Slide.cs -------------------------------------------------------------------------------- /Source/TestAddin/Addin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/TestAddin/Addin.cs -------------------------------------------------------------------------------- /Source/TestAddin/RibbonUI.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/TestAddin/RibbonUI.xml -------------------------------------------------------------------------------- /Source/TestAddin/TestAddin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/TestAddin/TestAddin.csproj -------------------------------------------------------------------------------- /Source/TestAddin/TestPane.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/TestAddin/TestPane.cs -------------------------------------------------------------------------------- /Source/VBIDE/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/VBIDE/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/VBIDE/Classes/Addins.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/VBIDE/Classes/Addins.cs -------------------------------------------------------------------------------- /Source/VBIDE/Classes/CodeModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/VBIDE/Classes/CodeModule.cs -------------------------------------------------------------------------------- /Source/VBIDE/Classes/CodePane.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/VBIDE/Classes/CodePane.cs -------------------------------------------------------------------------------- /Source/VBIDE/Classes/CodePanes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/VBIDE/Classes/CodePanes.cs -------------------------------------------------------------------------------- /Source/VBIDE/Classes/Component.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/VBIDE/Classes/Component.cs -------------------------------------------------------------------------------- /Source/VBIDE/Classes/Components.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/VBIDE/Classes/Components.cs -------------------------------------------------------------------------------- /Source/VBIDE/Classes/Properties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/VBIDE/Classes/Properties.cs -------------------------------------------------------------------------------- /Source/VBIDE/Classes/References.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/VBIDE/Classes/References.cs -------------------------------------------------------------------------------- /Source/VBIDE/Classes/VBProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/VBIDE/Classes/VBProject.cs -------------------------------------------------------------------------------- /Source/VBIDE/Classes/VBProjects.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/VBIDE/Classes/VBProjects.cs -------------------------------------------------------------------------------- /Source/VBIDE/Classes/Windows.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/VBIDE/Classes/Windows.cs -------------------------------------------------------------------------------- /Source/VBIDE/Utils/ProjectInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/VBIDE/Utils/ProjectInfo.cs -------------------------------------------------------------------------------- /Source/VBIDE/VBIDEApi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/VBIDE/VBIDEApi.csproj -------------------------------------------------------------------------------- /Source/Visio/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/Visio/Classes/AccelItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Classes/AccelItem.cs -------------------------------------------------------------------------------- /Source/Visio/Classes/AccelItems.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Classes/AccelItems.cs -------------------------------------------------------------------------------- /Source/Visio/Classes/AccelTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Classes/AccelTable.cs -------------------------------------------------------------------------------- /Source/Visio/Classes/Addon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Classes/Addon.cs -------------------------------------------------------------------------------- /Source/Visio/Classes/Addons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Classes/Addons.cs -------------------------------------------------------------------------------- /Source/Visio/Classes/Cell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Classes/Cell.cs -------------------------------------------------------------------------------- /Source/Visio/Classes/Characters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Classes/Characters.cs -------------------------------------------------------------------------------- /Source/Visio/Classes/Color.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Classes/Color.cs -------------------------------------------------------------------------------- /Source/Visio/Classes/Colors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Classes/Colors.cs -------------------------------------------------------------------------------- /Source/Visio/Classes/Comment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Classes/Comment.cs -------------------------------------------------------------------------------- /Source/Visio/Classes/Comments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Classes/Comments.cs -------------------------------------------------------------------------------- /Source/Visio/Classes/Connect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Classes/Connect.cs -------------------------------------------------------------------------------- /Source/Visio/Classes/Connects.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Classes/Connects.cs -------------------------------------------------------------------------------- /Source/Visio/Classes/Curve.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Classes/Curve.cs -------------------------------------------------------------------------------- /Source/Visio/Classes/DataColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Classes/DataColumn.cs -------------------------------------------------------------------------------- /Source/Visio/Classes/Document.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Classes/Document.cs -------------------------------------------------------------------------------- /Source/Visio/Classes/Documents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Classes/Documents.cs -------------------------------------------------------------------------------- /Source/Visio/Classes/Event.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Classes/Event.cs -------------------------------------------------------------------------------- /Source/Visio/Classes/EventList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Classes/EventList.cs -------------------------------------------------------------------------------- /Source/Visio/Classes/Extender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Classes/Extender.cs -------------------------------------------------------------------------------- /Source/Visio/Classes/Font.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Classes/Font.cs -------------------------------------------------------------------------------- /Source/Visio/Classes/Fonts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Classes/Fonts.cs -------------------------------------------------------------------------------- /Source/Visio/Classes/Hyperlink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Classes/Hyperlink.cs -------------------------------------------------------------------------------- /Source/Visio/Classes/Hyperlinks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Classes/Hyperlinks.cs -------------------------------------------------------------------------------- /Source/Visio/Classes/Layer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Classes/Layer.cs -------------------------------------------------------------------------------- /Source/Visio/Classes/Layers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Classes/Layers.cs -------------------------------------------------------------------------------- /Source/Visio/Classes/MSGWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Classes/MSGWrap.cs -------------------------------------------------------------------------------- /Source/Visio/Classes/Master.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Classes/Master.cs -------------------------------------------------------------------------------- /Source/Visio/Classes/Masters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Classes/Masters.cs -------------------------------------------------------------------------------- /Source/Visio/Classes/Menu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Classes/Menu.cs -------------------------------------------------------------------------------- /Source/Visio/Classes/MenuItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Classes/MenuItem.cs -------------------------------------------------------------------------------- /Source/Visio/Classes/MenuItems.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Classes/MenuItems.cs -------------------------------------------------------------------------------- /Source/Visio/Classes/MenuSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Classes/MenuSet.cs -------------------------------------------------------------------------------- /Source/Visio/Classes/MenuSets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Classes/MenuSets.cs -------------------------------------------------------------------------------- /Source/Visio/Classes/Menus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Classes/Menus.cs -------------------------------------------------------------------------------- /Source/Visio/Classes/MouseEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Classes/MouseEvent.cs -------------------------------------------------------------------------------- /Source/Visio/Classes/OLEObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Classes/OLEObject.cs -------------------------------------------------------------------------------- /Source/Visio/Classes/OLEObjects.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Classes/OLEObjects.cs -------------------------------------------------------------------------------- /Source/Visio/Classes/Page.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Classes/Page.cs -------------------------------------------------------------------------------- /Source/Visio/Classes/Pages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Classes/Pages.cs -------------------------------------------------------------------------------- /Source/Visio/Classes/Path.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Classes/Path.cs -------------------------------------------------------------------------------- /Source/Visio/Classes/Paths.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Classes/Paths.cs -------------------------------------------------------------------------------- /Source/Visio/Classes/Row.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Classes/Row.cs -------------------------------------------------------------------------------- /Source/Visio/Classes/Section.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Classes/Section.cs -------------------------------------------------------------------------------- /Source/Visio/Classes/Selection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Classes/Selection.cs -------------------------------------------------------------------------------- /Source/Visio/Classes/Shape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Classes/Shape.cs -------------------------------------------------------------------------------- /Source/Visio/Classes/Shapes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Classes/Shapes.cs -------------------------------------------------------------------------------- /Source/Visio/Classes/StatusBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Classes/StatusBar.cs -------------------------------------------------------------------------------- /Source/Visio/Classes/StatusBars.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Classes/StatusBars.cs -------------------------------------------------------------------------------- /Source/Visio/Classes/Style.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Classes/Style.cs -------------------------------------------------------------------------------- /Source/Visio/Classes/Styles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Classes/Styles.cs -------------------------------------------------------------------------------- /Source/Visio/Classes/Toolbar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Classes/Toolbar.cs -------------------------------------------------------------------------------- /Source/Visio/Classes/ToolbarSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Classes/ToolbarSet.cs -------------------------------------------------------------------------------- /Source/Visio/Classes/Toolbars.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Classes/Toolbars.cs -------------------------------------------------------------------------------- /Source/Visio/Classes/UIObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Classes/UIObject.cs -------------------------------------------------------------------------------- /Source/Visio/Classes/Validation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Classes/Validation.cs -------------------------------------------------------------------------------- /Source/Visio/Classes/Window.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Classes/Window.cs -------------------------------------------------------------------------------- /Source/Visio/Classes/Windows.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Classes/Windows.cs -------------------------------------------------------------------------------- /Source/Visio/Enums/VisCellError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Enums/VisCellError.cs -------------------------------------------------------------------------------- /Source/Visio/Enums/VisCellVals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Enums/VisCellVals.cs -------------------------------------------------------------------------------- /Source/Visio/Enums/VisCharsBias.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Enums/VisCharsBias.cs -------------------------------------------------------------------------------- /Source/Visio/Enums/VisEdition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Enums/VisEdition.cs -------------------------------------------------------------------------------- /Source/Visio/Enums/VisFlipTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Enums/VisFlipTypes.cs -------------------------------------------------------------------------------- /Source/Visio/Enums/VisFromParts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Enums/VisFromParts.cs -------------------------------------------------------------------------------- /Source/Visio/Enums/VisGeomFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Enums/VisGeomFlags.cs -------------------------------------------------------------------------------- /Source/Visio/Enums/VisLangFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Enums/VisLangFlags.cs -------------------------------------------------------------------------------- /Source/Visio/Enums/VisPageTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Enums/VisPageTypes.cs -------------------------------------------------------------------------------- /Source/Visio/Enums/VisRowTags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Enums/VisRowTags.cs -------------------------------------------------------------------------------- /Source/Visio/Enums/VisRunTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Enums/VisRunTypes.cs -------------------------------------------------------------------------------- /Source/Visio/Enums/VisShapeIDs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Enums/VisShapeIDs.cs -------------------------------------------------------------------------------- /Source/Visio/Enums/VisStatCodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Enums/VisStatCodes.cs -------------------------------------------------------------------------------- /Source/Visio/Enums/VisToParts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Enums/VisToParts.cs -------------------------------------------------------------------------------- /Source/Visio/Enums/VisUIBarRow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Enums/VisUIBarRow.cs -------------------------------------------------------------------------------- /Source/Visio/Enums/VisUICmds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Enums/VisUICmds.cs -------------------------------------------------------------------------------- /Source/Visio/Enums/VisUICtrlIDs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Enums/VisUICtrlIDs.cs -------------------------------------------------------------------------------- /Source/Visio/Enums/VisUIIconIDs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Enums/VisUIIconIDs.cs -------------------------------------------------------------------------------- /Source/Visio/Enums/VisUIObjSets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Enums/VisUIObjSets.cs -------------------------------------------------------------------------------- /Source/Visio/Enums/VisUnitCodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Enums/VisUnitCodes.cs -------------------------------------------------------------------------------- /Source/Visio/Enums/VisWinTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Enums/VisWinTypes.cs -------------------------------------------------------------------------------- /Source/Visio/Enums/VisWindowFit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Enums/VisWindowFit.cs -------------------------------------------------------------------------------- /Source/Visio/Modules/Global.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Modules/Global.cs -------------------------------------------------------------------------------- /Source/Visio/Tools/COMAddin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Tools/COMAddin.cs -------------------------------------------------------------------------------- /Source/Visio/Utils/ProjectInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/Utils/ProjectInfo.cs -------------------------------------------------------------------------------- /Source/Visio/VisioApi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Visio/VisioApi.csproj -------------------------------------------------------------------------------- /Source/Word/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/Word/Classes/Application.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Classes/Application.cs -------------------------------------------------------------------------------- /Source/Word/Classes/Document.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Classes/Document.cs -------------------------------------------------------------------------------- /Source/Word/Classes/Font.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Classes/Font.cs -------------------------------------------------------------------------------- /Source/Word/Classes/OLEControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Classes/OLEControl.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdAlertLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdAlertLevel.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdAnimation.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdAraSpeller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdAraSpeller.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdAutoMacros.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdAutoMacros.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdBorderType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdBorderType.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdBreakType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdBreakType.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdCellColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdCellColor.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdColor.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdColorIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdColorIndex.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdColumnWidth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdColumnWidth.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdConstants.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdContinue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdContinue.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdCountry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdCountry.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdCursorType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdCursorType.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdDeleteCells.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdDeleteCells.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdEditionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdEditionType.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdEditorType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdEditorType.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdExportItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdExportItem.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdExportRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdExportRange.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdFieldKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdFieldKind.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdFieldType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdFieldType.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdFindMatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdFindMatch.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdFindWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdFindWrap.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdFontBias.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdFontBias.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdGoToItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdGoToItem.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdGranularity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdGranularity.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdGutterStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdGutterStyle.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdHelpType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdHelpType.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdHelpTypeHID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdHelpTypeHID.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdIMEMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdIMEMode.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdIndexFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdIndexFilter.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdIndexFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdIndexFormat.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdIndexSortBy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdIndexSortBy.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdIndexType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdIndexType.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdInformation.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdInsertCells.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdInsertCells.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdKana.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdKana.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdKey.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdKeyCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdKeyCategory.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdLanguageID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdLanguageID.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdLayoutMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdLayoutMode.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdLetterStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdLetterStyle.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdLigatures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdLigatures.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdLineSpacing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdLineSpacing.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdLineStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdLineStyle.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdLineType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdLineType.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdLineWidth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdLineWidth.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdLinkType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdLinkType.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdListApplyTo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdListApplyTo.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdListType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdListType.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdLockType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdLockType.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdMailSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdMailSystem.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdMergeTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdMergeTarget.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdMonthNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdMonthNames.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdNumberForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdNumberForm.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdNumberType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdNumberType.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdOLEType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdOLEType.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdOLEVerb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdOLEVerb.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdOMathJc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdOMathJc.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdOMathType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdOMathType.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdOpenFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdOpenFormat.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdOrientation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdOrientation.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdPageColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdPageColor.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdPageFit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdPageFit.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdPaperSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdPaperSize.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdPaperTray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdPaperTray.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdRelocate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdRelocate.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdReplace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdReplace.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdRulerStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdRulerStyle.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdSaveFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdSaveFormat.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdSaveOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdSaveOptions.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdSeekView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdSeekView.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdShowFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdShowFilter.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdSortOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdSortOrder.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdSpecialPane.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdSpecialPane.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdStatistic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdStatistic.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdStoryType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdStoryType.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdStyleSort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdStyleSort.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdStyleType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdStyleType.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdSummaryMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdSummaryMode.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdTabLeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdTabLeader.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdTableFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdTableFormat.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdTaskPanes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdTaskPanes.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdToaFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdToaFormat.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdTocFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdTocFormat.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdTofFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdTofFormat.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdUnderline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdUnderline.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdUnits.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdUnits.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdViewType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdViewType.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdViewTypeOld.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdViewTypeOld.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdWindowState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdWindowState.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdWindowType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdWindowType.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdWordDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdWordDialog.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdWrapType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdWrapType.cs -------------------------------------------------------------------------------- /Source/Word/Enums/WdXMLNodeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/WdXMLNodeType.cs -------------------------------------------------------------------------------- /Source/Word/Enums/XlAxisCrosses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/XlAxisCrosses.cs -------------------------------------------------------------------------------- /Source/Word/Enums/XlAxisGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/XlAxisGroup.cs -------------------------------------------------------------------------------- /Source/Word/Enums/XlAxisType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/XlAxisType.cs -------------------------------------------------------------------------------- /Source/Word/Enums/XlBackground.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/XlBackground.cs -------------------------------------------------------------------------------- /Source/Word/Enums/XlBarShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/XlBarShape.cs -------------------------------------------------------------------------------- /Source/Word/Enums/XlChartItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/XlChartItem.cs -------------------------------------------------------------------------------- /Source/Word/Enums/XlColorIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/XlColorIndex.cs -------------------------------------------------------------------------------- /Source/Word/Enums/XlConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/XlConstants.cs -------------------------------------------------------------------------------- /Source/Word/Enums/XlDisplayUnit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/XlDisplayUnit.cs -------------------------------------------------------------------------------- /Source/Word/Enums/XlEndStyleCap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/XlEndStyleCap.cs -------------------------------------------------------------------------------- /Source/Word/Enums/XlHAlign.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/XlHAlign.cs -------------------------------------------------------------------------------- /Source/Word/Enums/XlLineStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/XlLineStyle.cs -------------------------------------------------------------------------------- /Source/Word/Enums/XlMarkerStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/XlMarkerStyle.cs -------------------------------------------------------------------------------- /Source/Word/Enums/XlOrientation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/XlOrientation.cs -------------------------------------------------------------------------------- /Source/Word/Enums/XlPattern.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/XlPattern.cs -------------------------------------------------------------------------------- /Source/Word/Enums/XlRgbColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/XlRgbColor.cs -------------------------------------------------------------------------------- /Source/Word/Enums/XlRowCol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/XlRowCol.cs -------------------------------------------------------------------------------- /Source/Word/Enums/XlScaleType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/XlScaleType.cs -------------------------------------------------------------------------------- /Source/Word/Enums/XlTickMark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/XlTickMark.cs -------------------------------------------------------------------------------- /Source/Word/Enums/XlTimeUnit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/XlTimeUnit.cs -------------------------------------------------------------------------------- /Source/Word/Enums/XlVAlign.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Enums/XlVAlign.cs -------------------------------------------------------------------------------- /Source/Word/Modules/Global.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Modules/Global.cs -------------------------------------------------------------------------------- /Source/Word/Tools/COMAddin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Tools/COMAddin.cs -------------------------------------------------------------------------------- /Source/Word/Tools/ITaskPane.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Tools/ITaskPane.cs -------------------------------------------------------------------------------- /Source/Word/Utils/ProjectInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/Utils/ProjectInfo.cs -------------------------------------------------------------------------------- /Source/Word/WordApi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Source/Word/WordApi.csproj -------------------------------------------------------------------------------- /Tests/Main Tests/Host/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Tests/Main Tests/Host/Form1.cs -------------------------------------------------------------------------------- /Tests/Main Tests/Host/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Tests/Main Tests/Host/Form1.resx -------------------------------------------------------------------------------- /Tests/Main Tests/Host/Host.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Tests/Main Tests/Host/Host.csproj -------------------------------------------------------------------------------- /Tests/Main Tests/Host/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Tests/Main Tests/Host/Program.cs -------------------------------------------------------------------------------- /Tests/Main Tests/Host/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Tests/Main Tests/Host/app.config -------------------------------------------------------------------------------- /Tests/Main Tests/Host/tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Tests/Main Tests/Host/tick.png -------------------------------------------------------------------------------- /Tests/Main Tests/Tests.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Tests/Main Tests/Tests.sln -------------------------------------------------------------------------------- /Toolbox/Languages/1049.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Toolbox/Languages/1049.lng -------------------------------------------------------------------------------- /Toolbox/Toolbox/1049.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Toolbox/Toolbox/1049.lng -------------------------------------------------------------------------------- /Toolbox/Toolbox/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Toolbox/Toolbox/AssemblyInfo.cs -------------------------------------------------------------------------------- /Toolbox/Toolbox/ErrorCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Toolbox/Toolbox/ErrorCategory.cs -------------------------------------------------------------------------------- /Toolbox/Toolbox/Forms/ErrorForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Toolbox/Toolbox/Forms/ErrorForm.cs -------------------------------------------------------------------------------- /Toolbox/Toolbox/Forms/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Toolbox/Toolbox/Forms/MainForm.cs -------------------------------------------------------------------------------- /Toolbox/Toolbox/IToolboxControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Toolbox/Toolbox/IToolboxControl.cs -------------------------------------------------------------------------------- /Toolbox/Toolbox/IToolboxHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Toolbox/Toolbox/IToolboxHost.cs -------------------------------------------------------------------------------- /Toolbox/Toolbox/Images/INFO.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Toolbox/Toolbox/Images/INFO.ICO -------------------------------------------------------------------------------- /Toolbox/Toolbox/Images/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Toolbox/Toolbox/Images/add.png -------------------------------------------------------------------------------- /Toolbox/Toolbox/Images/header.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Toolbox/Toolbox/Images/header.PNG -------------------------------------------------------------------------------- /Toolbox/Toolbox/Images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Toolbox/Toolbox/Images/lock.png -------------------------------------------------------------------------------- /Toolbox/Toolbox/Images/welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Toolbox/Toolbox/Images/welcome.png -------------------------------------------------------------------------------- /Toolbox/Toolbox/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Toolbox/Toolbox/Program.cs -------------------------------------------------------------------------------- /Toolbox/Toolbox/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Toolbox/Toolbox/ReadMe.txt -------------------------------------------------------------------------------- /Toolbox/Toolbox/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Toolbox/Toolbox/app.config -------------------------------------------------------------------------------- /Tutorials/C#/Tutorials CSharp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Tutorials/C#/Tutorials CSharp.sln -------------------------------------------------------------------------------- /Tutorials/C#/Tutorials/FormMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Tutorials/C#/Tutorials/FormMain.cs -------------------------------------------------------------------------------- /Tutorials/C#/Tutorials/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Tutorials/C#/Tutorials/Program.cs -------------------------------------------------------------------------------- /Tutorials/TutorialsBase/IHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Tutorials/TutorialsBase/IHost.cs -------------------------------------------------------------------------------- /Tutorials/VB/Tutorials VB.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Tutorials/VB/Tutorials VB.sln -------------------------------------------------------------------------------- /Tutorials/VB/Tutorials/FormMain.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netoffice/NetOffice/HEAD/Tutorials/VB/Tutorials/FormMain.vb --------------------------------------------------------------------------------