├── .gitignore ├── CS ├── AnthonyDuguid.pfx ├── Markup.csproj ├── Markup.sln ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ ├── Cloud.png │ ├── CloudHatch.png │ ├── CloudHold.png │ ├── CloudPartBottom.png │ ├── CloudPartLeft.png │ ├── CloudPartRight.png │ ├── CloudPartTop.png │ ├── ExcelAddin.ico │ ├── Hatch.png │ └── RevTri.png ├── Ribbon.xml ├── Scripts │ ├── AssemblyInfo.cs │ ├── ErrorHandler.cs │ └── Ribbon.cs ├── Settings.cs ├── TaskPane │ ├── Settings.cs │ ├── Settings.designer.cs │ └── Settings.resx ├── ThisAddIn.Designer.cs ├── ThisAddIn.Designer.xml ├── ThisAddIn.cs ├── app.config └── packages.config ├── Images └── ReadMe │ ├── example.xlsx │ ├── excel.ribbon.gif │ ├── header.png │ ├── header.pptx │ ├── ribbon.group.about.png │ ├── ribbon.group.editmarkup.png │ ├── ribbon.group.help.png │ ├── ribbon.group.insertcloudpart.png │ ├── ribbon.group.insertmarkup.png │ ├── ribbon.group.insertrevision.png │ ├── ribbon.group.selectcolor.png │ ├── vba.ribbon.settings.png │ └── vsto.ribbon.settings.png ├── LICENSE ├── README.md ├── VB ├── AnthonyDuguid.pfx ├── Forms │ ├── frmSettings.Designer.vb │ ├── frmSettings.resx │ └── frmSettings.vb ├── Markup.sln ├── Markup.vbproj ├── My Project │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings ├── Resources │ ├── Cloud.png │ ├── CloudHatch.png │ ├── CloudHold.png │ ├── CloudPartBottom.png │ ├── CloudPartLeft.png │ ├── CloudPartRight.png │ ├── CloudPartTop.png │ ├── ExcelAddin.ico │ ├── Hatch.png │ └── RevTri.png ├── Ribbon.xml ├── Scripts │ ├── ErrorHandler.vb │ └── Ribbon.vb ├── TaskPane │ ├── Settings.designer.vb │ ├── Settings.resx │ └── Settings.vb ├── ThisAddIn.Designer.vb ├── ThisAddIn.Designer.xml ├── ThisAddIn.vb └── app.config └── VBA ├── Install.bat ├── Markup.xlam └── Markup.xlsm /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/.gitignore -------------------------------------------------------------------------------- /CS/AnthonyDuguid.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/CS/AnthonyDuguid.pfx -------------------------------------------------------------------------------- /CS/Markup.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/CS/Markup.csproj -------------------------------------------------------------------------------- /CS/Markup.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/CS/Markup.sln -------------------------------------------------------------------------------- /CS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/CS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CS/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/CS/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /CS/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/CS/Properties/Resources.resx -------------------------------------------------------------------------------- /CS/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/CS/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /CS/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/CS/Properties/Settings.settings -------------------------------------------------------------------------------- /CS/Resources/Cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/CS/Resources/Cloud.png -------------------------------------------------------------------------------- /CS/Resources/CloudHatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/CS/Resources/CloudHatch.png -------------------------------------------------------------------------------- /CS/Resources/CloudHold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/CS/Resources/CloudHold.png -------------------------------------------------------------------------------- /CS/Resources/CloudPartBottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/CS/Resources/CloudPartBottom.png -------------------------------------------------------------------------------- /CS/Resources/CloudPartLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/CS/Resources/CloudPartLeft.png -------------------------------------------------------------------------------- /CS/Resources/CloudPartRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/CS/Resources/CloudPartRight.png -------------------------------------------------------------------------------- /CS/Resources/CloudPartTop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/CS/Resources/CloudPartTop.png -------------------------------------------------------------------------------- /CS/Resources/ExcelAddin.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/CS/Resources/ExcelAddin.ico -------------------------------------------------------------------------------- /CS/Resources/Hatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/CS/Resources/Hatch.png -------------------------------------------------------------------------------- /CS/Resources/RevTri.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/CS/Resources/RevTri.png -------------------------------------------------------------------------------- /CS/Ribbon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/CS/Ribbon.xml -------------------------------------------------------------------------------- /CS/Scripts/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/CS/Scripts/AssemblyInfo.cs -------------------------------------------------------------------------------- /CS/Scripts/ErrorHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/CS/Scripts/ErrorHandler.cs -------------------------------------------------------------------------------- /CS/Scripts/Ribbon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/CS/Scripts/Ribbon.cs -------------------------------------------------------------------------------- /CS/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/CS/Settings.cs -------------------------------------------------------------------------------- /CS/TaskPane/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/CS/TaskPane/Settings.cs -------------------------------------------------------------------------------- /CS/TaskPane/Settings.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/CS/TaskPane/Settings.designer.cs -------------------------------------------------------------------------------- /CS/TaskPane/Settings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/CS/TaskPane/Settings.resx -------------------------------------------------------------------------------- /CS/ThisAddIn.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/CS/ThisAddIn.Designer.cs -------------------------------------------------------------------------------- /CS/ThisAddIn.Designer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/CS/ThisAddIn.Designer.xml -------------------------------------------------------------------------------- /CS/ThisAddIn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/CS/ThisAddIn.cs -------------------------------------------------------------------------------- /CS/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/CS/app.config -------------------------------------------------------------------------------- /CS/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/CS/packages.config -------------------------------------------------------------------------------- /Images/ReadMe/example.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/Images/ReadMe/example.xlsx -------------------------------------------------------------------------------- /Images/ReadMe/excel.ribbon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/Images/ReadMe/excel.ribbon.gif -------------------------------------------------------------------------------- /Images/ReadMe/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/Images/ReadMe/header.png -------------------------------------------------------------------------------- /Images/ReadMe/header.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/Images/ReadMe/header.pptx -------------------------------------------------------------------------------- /Images/ReadMe/ribbon.group.about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/Images/ReadMe/ribbon.group.about.png -------------------------------------------------------------------------------- /Images/ReadMe/ribbon.group.editmarkup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/Images/ReadMe/ribbon.group.editmarkup.png -------------------------------------------------------------------------------- /Images/ReadMe/ribbon.group.help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/Images/ReadMe/ribbon.group.help.png -------------------------------------------------------------------------------- /Images/ReadMe/ribbon.group.insertcloudpart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/Images/ReadMe/ribbon.group.insertcloudpart.png -------------------------------------------------------------------------------- /Images/ReadMe/ribbon.group.insertmarkup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/Images/ReadMe/ribbon.group.insertmarkup.png -------------------------------------------------------------------------------- /Images/ReadMe/ribbon.group.insertrevision.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/Images/ReadMe/ribbon.group.insertrevision.png -------------------------------------------------------------------------------- /Images/ReadMe/ribbon.group.selectcolor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/Images/ReadMe/ribbon.group.selectcolor.png -------------------------------------------------------------------------------- /Images/ReadMe/vba.ribbon.settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/Images/ReadMe/vba.ribbon.settings.png -------------------------------------------------------------------------------- /Images/ReadMe/vsto.ribbon.settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/Images/ReadMe/vsto.ribbon.settings.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/README.md -------------------------------------------------------------------------------- /VB/AnthonyDuguid.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/VB/AnthonyDuguid.pfx -------------------------------------------------------------------------------- /VB/Forms/frmSettings.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/VB/Forms/frmSettings.Designer.vb -------------------------------------------------------------------------------- /VB/Forms/frmSettings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/VB/Forms/frmSettings.resx -------------------------------------------------------------------------------- /VB/Forms/frmSettings.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/VB/Forms/frmSettings.vb -------------------------------------------------------------------------------- /VB/Markup.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/VB/Markup.sln -------------------------------------------------------------------------------- /VB/Markup.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/VB/Markup.vbproj -------------------------------------------------------------------------------- /VB/My Project/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/VB/My Project/AssemblyInfo.vb -------------------------------------------------------------------------------- /VB/My Project/Resources.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/VB/My Project/Resources.Designer.vb -------------------------------------------------------------------------------- /VB/My Project/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/VB/My Project/Resources.resx -------------------------------------------------------------------------------- /VB/My Project/Settings.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/VB/My Project/Settings.Designer.vb -------------------------------------------------------------------------------- /VB/My Project/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/VB/My Project/Settings.settings -------------------------------------------------------------------------------- /VB/Resources/Cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/VB/Resources/Cloud.png -------------------------------------------------------------------------------- /VB/Resources/CloudHatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/VB/Resources/CloudHatch.png -------------------------------------------------------------------------------- /VB/Resources/CloudHold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/VB/Resources/CloudHold.png -------------------------------------------------------------------------------- /VB/Resources/CloudPartBottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/VB/Resources/CloudPartBottom.png -------------------------------------------------------------------------------- /VB/Resources/CloudPartLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/VB/Resources/CloudPartLeft.png -------------------------------------------------------------------------------- /VB/Resources/CloudPartRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/VB/Resources/CloudPartRight.png -------------------------------------------------------------------------------- /VB/Resources/CloudPartTop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/VB/Resources/CloudPartTop.png -------------------------------------------------------------------------------- /VB/Resources/ExcelAddin.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/VB/Resources/ExcelAddin.ico -------------------------------------------------------------------------------- /VB/Resources/Hatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/VB/Resources/Hatch.png -------------------------------------------------------------------------------- /VB/Resources/RevTri.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/VB/Resources/RevTri.png -------------------------------------------------------------------------------- /VB/Ribbon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/VB/Ribbon.xml -------------------------------------------------------------------------------- /VB/Scripts/ErrorHandler.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/VB/Scripts/ErrorHandler.vb -------------------------------------------------------------------------------- /VB/Scripts/Ribbon.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/VB/Scripts/Ribbon.vb -------------------------------------------------------------------------------- /VB/TaskPane/Settings.designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/VB/TaskPane/Settings.designer.vb -------------------------------------------------------------------------------- /VB/TaskPane/Settings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/VB/TaskPane/Settings.resx -------------------------------------------------------------------------------- /VB/TaskPane/Settings.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/VB/TaskPane/Settings.vb -------------------------------------------------------------------------------- /VB/ThisAddIn.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/VB/ThisAddIn.Designer.vb -------------------------------------------------------------------------------- /VB/ThisAddIn.Designer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/VB/ThisAddIn.Designer.xml -------------------------------------------------------------------------------- /VB/ThisAddIn.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/VB/ThisAddIn.vb -------------------------------------------------------------------------------- /VB/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/VB/app.config -------------------------------------------------------------------------------- /VBA/Install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/VBA/Install.bat -------------------------------------------------------------------------------- /VBA/Markup.xlam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/VBA/Markup.xlam -------------------------------------------------------------------------------- /VBA/Markup.xlsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Excel-projects/Excel-Markup/HEAD/VBA/Markup.xlsm --------------------------------------------------------------------------------