0

このコンテキストでこのエラーメッセージが表示されます:

int left = 0;
            int top = 0;
            int width = 0;
            int height = 0;
            Word.Range rng2 = rng;
            Microsoft.Office.Interop.Word.Window.GetPoint(out left, out top, out width, out height, rng);

どうすれば修正できますか?

4

1 に答える 1

2

ウィンドウは静的ではありません。使用するには、ウィンドウの新しいインスタンスを作成する必要があります。

 //using Word = Microsoft.Office.Interop.Word;
                Word.Application application = this.Application;

                //Not sure how you create your application object, just including this incase you're not using VSTO
                //Word.Application application =
                //(Word.Application)System.Runtime.InteropServices.Marshal.GetActiveObject("Word.Application");
                //OR
                //Word.Application application = new Word.Application();

                Word.Range rng = application.ActiveDocument.Range();
                int left,top,width,height = 0;
                Word.Range rng2 = rng;
                application.ActiveWindow.GetPoint(out left, out top, out width, out height, rng);

また

Microsoft.Office.Interop.Word.Window window = application.ActiveWindow;
            window.GetPoint(out left, out top, out width, out height, rng);
于 2012-10-31T06:47:36.957 に答える