当前位置: 首页>>代码示例>>C#>>正文


C# Microsoft.Office.Interop.Word.get_Information方法代码示例

本文整理汇总了C#中Microsoft.Office.Interop.Word.get_Information方法的典型用法代码示例。如果您正苦于以下问题:C# Microsoft.Office.Interop.Word.get_Information方法的具体用法?C# Microsoft.Office.Interop.Word.get_Information怎么用?C# Microsoft.Office.Interop.Word.get_Information使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Microsoft.Office.Interop.Word的用法示例。


在下文中一共展示了Microsoft.Office.Interop.Word.get_Information方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: create

        /// <summary>
        /// テキストの変更箇所を識別する。
        /// </summary>
        /// <param name="range">変更箇所のレンジ</param>
        /// <returns>テキストの変更箇所</returns>
        public static new RevPos create(Word.Range range)
        {
            Word.Selection selection = range.Application.Selection;
            Position start = new Position(0, 0);
            Position end = new Position(0, 0);

            range.Select();

            //終了ページと開始位置の取得
            start.fHeight
                = range.get_Information(Word.WdInformation.wdVerticalPositionRelativeToPage);
            end.fPage
                = range.get_Information(Word.WdInformation.wdActiveEndPageNumber);

            //終了位置の取得
            int ret = selection.MoveStart(Word.WdUnits.wdCharacter, range.End - range.Start);
            if (ret == 0) {
                throw new System.Exception();
            }

            //ヘッダだとエラーコードが-1になる。
            float posInThePage = selection.get_Information(Word.WdInformation.wdVerticalPositionRelativeToPage);
            //ヘッダー以外の場合
            if (posInThePage != -1) {
                end.fHeight = posInThePage + selection.Font.Size * 1.5F;
            }
                //ヘッダーの場合
            else {
                end.fHeight = range.Document.PageSetup.TopMargin - 5.0F;
            }

            range.Select();

            //開始ページ番号取得
            selection.MoveEnd(Word.WdUnits.wdCharacter, range.Start - range.End);
            start.fPage
                = selection.get_Information(Word.WdInformation.wdActiveEndPageNumber);

            return new RevPosOfText(start, end, range);
        }
开发者ID:gosh-project,项目名称:gosh-officer,代码行数:45,代码来源:RevPosOfText.cs

示例2: create

 /// <summary>
 /// ワードのレンジオブジェクトから変更箇所の位置を同定する。
 /// </summary>
 /// <param name="range">変更箇所のレンジ</param>
 /// <returns>変更箇所</returns>
 public static RevPos create(Word.Range range)
 {
     //図の場合
     if (range.InlineShapes.Count > 0) {
         return RevPosOfFigure.create(range);
     }
         // 表の場合
     else if (range.get_Information(Word.WdInformation.wdWithInTable)) {
         return RevPosOfTable.create(range);
     }
         //文書等の場合
     else {
         return RevPosOfText.create(range);
     }
 }
开发者ID:gosh-project,项目名称:gosh-officer,代码行数:20,代码来源:RevPos.cs

示例3: create

        /// <summary>
        /// 図の変更箇所を識別する。
        /// </summary>
        /// <param name="range">変更箇所のレンジ</param>
        /// <returns>図の変更箇所</returns>
        public static new RevPos create(Word.Range range)
        {
            Word.Selection selection = range.Application.Selection;
            Position start = new Position(0, 0);
            Position end = new Position(0, 0);

            //終了ページと開始位置の取得
            start.fHeight = range.get_Information(Word.WdInformation.wdVerticalPositionRelativeToPage);
            end.fPage = range.get_Information(Word.WdInformation.wdActiveEndPageNumber);

            end.fHeight = range.get_Information(Word.WdInformation.wdVerticalPositionRelativeToPage);

            //図の大きさ分だけ終了位置を移動
            range.Select();
            foreach (Word.InlineShape shp in selection.InlineShapes) {
                end.fHeight += shp.Height;
            }

            //開始ページ番号取得
            selection.MoveEnd(Word.WdUnits.wdCharacter, range.Start - range.End);
            start.fPage = selection.get_Information(Word.WdInformation.wdActiveEndPageNumber);

            return new RevPosOfFigure(start, end, range);
        }
开发者ID:gosh-project,项目名称:gosh-officer,代码行数:29,代码来源:RevPosOfFigure.cs

示例4: AddTabStops

        private void AddTabStops(Word.Selection sel)
        {
            float codeblock_width;
            // in a table tab stops should be placed only where the cell is located horizontally
            if (sel.get_Information(Word.WdInformation.wdWithInTable) == true)
            {
                sel.SelectColumn();
                codeblock_width = wordApp.Selection.Columns[1].Width;   // no too elegant... but there is no better solution in the Word API
            }
            else
            {
                codeblock_width = sel.PageSetup.PageWidth - sel.PageSetup.RightMargin - sel.PageSetup.LeftMargin;
            }

            sel.ParagraphFormat.TabStops.ClearAll();

            for (float j = indentLength; j < codeblock_width; j += indentLength)
            {
                Object alignmentType = Word.WdTabAlignment.wdAlignTabLeft;
                Object tabLeader = Word.WdTabLeader.wdTabLeaderSpaces;
                sel.ParagraphFormat.TabStops.Add(j, ref alignmentType, ref tabLeader);
            }
        }
开发者ID:ggmod,项目名称:WordSyntaxHighlighter,代码行数:23,代码来源:WordIndentFixer.cs


注:本文中的Microsoft.Office.Interop.Word.get_Information方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。