VSTO

テキストを走査する

備忘録も兼ねてPowerPointプレゼンテーション内のテキストを走査するためのクラスを作成しました。 走査する単位はCharacter, Run, Word, Line, Sentence, Pragraphから選択できます。 using PowerPoint = Microsoft.Office.Interop.PowerPoint; using Offic…

編集中のプレゼンテーション、スライドを取得する

using PowerPoint = Microsoft.Office.Interop.PowerPoint; public partial class ThisAddIn { PowerPoint.Presentation GetActivePresentation() { return this.Application.ActivePresentation; } PowerPoint.Slide GetActiveSlide() { return this.Applic…

選択中のスライド、シェイプを取得する

using PowerPoint = Microsoft.Office.Interop.PowerPoint; public partial class ThisAddIn { PowerPoint.Selection GetSelection() { try { return this.Application.ActiveWindow.Selection; } catch (System.Runtime.InteropServices.COMException exc) …

VSTOファイルのパスを取得する

レジストリに登録されている情報を利用して.vstoファイルのパスを取得する方法。 private const string REGKEY_ADDIN = @"Software\Microsoft\Office\PowerPoint\AddIns\MyPowerPointAddIn"; string GetVstoFilePath() { Microsoft.Win32.RegistryKey regkey…

アドインのインストーラを作成する

アドインプロジェクトの変更 インストーラを作成したアドインプロジェクトを開きます。ここではMyPowerPointAddInプロジェクトとします。[1]http://code.msdn.microsoft.com/VSTO3MSI/Release/ProjectReleases.aspx?ReleaseId=729リンク[1]からVSTO v3 Deplo…

無効なアプリケーションアドインからの復帰

作成しているアドイン内で例外が生じた場合や、デバッグ中にVisual Studio側からでバグを停止したりすると、アドインが無効にされてしまいます。[1]How to: Re-enable a VSTO Add-in that has been disabled - Visual Studio | Microsoft Docs詳しくは[1]に…

何もしない空のPowerPointアドインの作成

アドインの中身は後々追加するとして、とりあえず何もしないPowerPointアドインを作成します。 Visual Studioで新規プロジェクトを作成します。 PowerPoint2007アドインを選択します。 ここではC#で選択しますが、VB.NETでも同様だと思います。 アドイン名は…

VSTOでPowerPointのCOMアドインを作成する

VSTO(Visual Studio Tools for Office)を使用するとVisual StudioでMicrosoft Officeようのアドインを作成することができます。VBAではなくC#、VB.NETを使用できます。VSTOでPowerPointのCOMアドインを作成した備忘録を少しずつ書いていきます。 間違った方…

ImageSetter ver.1.0.0

ImageSetter ver.1.0.0を公開します。 概要 画像ファイルをスライドとして挿入するPowerPointアドイン 必要環境 .NET Framework 3.5以降 Microsoft Visual Studio Tools for the Microsoft Office system (Version 3.0 Runtime)以降 動作確認 windows XP(32b…

LaTeXBox2e ver.2.0.0

LaTeXBox2e ver.2.0.0を公開します。 概要 TeXの数式・図式をPowerPointに貼り付けるためのアドイン 特徴 EPSもEMFも経由せずに数式の貼り付けを行う フォントの埋め込みが可能 コンパイル回数の指定が可能 日本語にも対応 日本語フォントの指定が可能 画像…