• <menu id="w2i4a"></menu>
  • logo E-iceblue中文文檔

    文檔首頁>>E-iceblue中文文檔>>文檔中插入形狀和形狀組

    文檔中插入形狀和形狀組


    Spire.Doc for .NET是一款專門對 Word 文檔進行操作的 .NET 類庫。在于幫助開發(fā)人員無需安裝 Microsoft Word情況下,輕松快捷高效地創(chuàng)建、編輯、轉(zhuǎn)換和打印 Microsoft Word 文檔。擁有近10年專業(yè)開發(fā)經(jīng)驗Spire系列辦公文檔開發(fā)工具,專注于創(chuàng)建、編輯、轉(zhuǎn)換和打印Word/PDF/Excel等格式文件處理,小巧便捷。在 C#、VB.NET 中從 Word 中提取圖像。

    Spire.Doc for.NET 最新下載

    MS Word 允許用戶從形狀菜單中選擇形狀,將其拖放到頁面上的任何所需位置。從 Spire.Doc 版本 6.0 或更高版本開始,我們添加了一個使用代碼處理形狀的新功能。以下部分將介紹如何使用 Spire.Doc 在 Word 文檔中的指定位置插入形狀和形狀組。

    代碼片段:

    第 1 步:初始化 Document 類的新實例。

    Document doc = new Document();

    第 2 步:在 Word 文檔中添加一個新部分,并在該部分中添加一個段落。

    Section sec = doc.AddSection();
    Paragraph para1 =sec.AddParagraph();

    第 3 步:通過調(diào)用 AppendShape() 方法將形狀添加到段落中。為了定位形狀的放置位置,您只需設(shè)置 ShapeObject 類的 HorizontalPosition 和 VerticalPosition 屬性。我們還可以通過設(shè)置 FillColor、StrokeColor 和 LineStyle 屬性來格式化形狀。

    ShapeObject shape1 = para1.AppendShape(50, 50, ShapeType.Heart);
    
    shape1.FillColor = Color.Red;
    shape1.StrokeColor = Color.Red;
    shape1.HorizontalPosition = 200;
    shape1.VerticalPosition = 100;
    
    ShapeObject shape2 = para1.AppendShape(100, 100, ShapeType.Arrow);
    
    shape2.FillColor = Color.Purple;
    shape2.StrokeColor = Color.Black;
    shape2.LineStyle = ShapeLineStyle.Double;
    shape2.StrokeWeight = 3;
    shape2.HorizontalPosition = 200;
    shape2.VerticalPosition = 200;

    第 4 步:添加一個新段落并通過調(diào)用 AppendShapeGroup() 方法將一個形狀組插入該段落。

    Paragraph para2 = sec.AddParagraph();
    ShapeGroup shapegr = para2.AppendShapeGroup(200, 400);
    
    shapegr.ChildObjects.Add(new ShapeObject(doc, ShapeType.Rectangle)
    {
    Width = 500,
    Height = 300,
    LineStyle = ShapeLineStyle.ThickThin,
    StrokeColor = System.Drawing.Color.Blue,
    
    StrokeWeight = 1.5,
    });
    shapegr.ChildObjects.Add(new ShapeObject(doc, ShapeType.RightTriangle)
    {
    Width = 500,
    Height = 300,
    VerticalPosition = 301,
    LineStyle = ShapeLineStyle.ThickThin,
    StrokeColor = System.Drawing.Color.Green,
    StrokeWeight = 1.5,
    });
    shapegr.ChildObjects.Add(new ShapeObject(doc, ShapeType.QuadArrow)
    {
    Width = 500,
    Height = 300,
    VerticalPosition = 601,
    LineStyle = ShapeLineStyle.ThickThin,
    StrokeColor = System.Drawing.Color.Blue,
    StrokeWeight = 1.5,
    });

    第 5 步:將文檔保存到文件中。

    doc.SaveToFile("InsertShapes.docx", FileFormat.Docx2010);

    結(jié)果

    如何在 C#、VB.NET 的 Word 文檔中插入形狀和形狀組

    完整代碼

    [C#]

    using Spire.Doc;
    using Spire.Doc.Documents;
    using Spire.Doc.Fields;
    using System.Drawing;
    namespace InsertShape
    {
    class Program
    {
    static void Main(string[] args)
    {
    Document doc = new Document();
    Section sec = doc.AddSection();
    Paragraph para1 = sec.AddParagraph();
    
    ShapeObject shape1 = para1.AppendShape(50, 50, ShapeType.Heart);
    
    shape1.FillColor = Color.Red;
    shape1.StrokeColor = Color.Red;
    shape1.HorizontalPosition = 200;
    shape1.VerticalPosition = 100;
    
    ShapeObject shape2 = para1.AppendShape(100, 100, ShapeType.Arrow);
    
    shape2.FillColor = Color.Purple;
    shape2.StrokeColor = Color.Black;
    shape2.LineStyle = ShapeLineStyle.Double;
    shape2.StrokeWeight = 3;
    shape2.HorizontalPosition = 200;
    shape2.VerticalPosition = 200;
    
    Paragraph para2 = sec.AddParagraph();
    ShapeGroup shapegr = para2.AppendShapeGroup(200, 400);
    
    shapegr.ChildObjects.Add(new ShapeObject(doc, ShapeType.Rectangle)
    {
    Width = 500,
    Height = 300,
    LineStyle = ShapeLineStyle.ThickThin,
    StrokeColor = System.Drawing.Color.Blue,
    
    StrokeWeight = 1.5,
    });
    shapegr.ChildObjects.Add(new ShapeObject(doc, ShapeType.RightTriangle)
    {
    Width = 500,
    Height = 300,
    VerticalPosition = 301,
    LineStyle = ShapeLineStyle.ThickThin,
    StrokeColor = System.Drawing.Color.Green,
    StrokeWeight = 1.5,
    });
    shapegr.ChildObjects.Add(new ShapeObject(doc, ShapeType.QuadArrow)
    {
    Width = 500,
    Height = 300,
    VerticalPosition = 601,
    LineStyle = ShapeLineStyle.ThickThin,
    StrokeColor = System.Drawing.Color.Blue,
    StrokeWeight = 1.5,
    });
    
    doc.SaveToFile("InsertShapes.docx", FileFormat.Docx2010);
    }
    }
    }

    [VB.NET]

    Imports Spire.Doc
    Imports Spire.Doc.Documents
    Imports Spire.Doc.Fields
    Imports System.Drawing
    Namespace InsertShape
    Class Program
    Private Shared Sub Main(args As String())
    Dim doc As New Document()
    Dim sec As Section = doc.AddSection()
    Dim para1 As Paragraph = sec.AddParagraph()
    
    Dim shape1 As ShapeObject = para1.AppendShape(50, 50, ShapeType.Heart)
    
    shape1.FillColor = Color.Red
    shape1.StrokeColor = Color.Red
    shape1.HorizontalPosition = 200
    shape1.VerticalPosition = 100
    
    Dim shape2 As ShapeObject = para1.AppendShape(100, 100, ShapeType.Arrow)
    
    shape2.FillColor = Color.Purple
    shape2.StrokeColor = Color.Black
    shape2.LineStyle = ShapeLineStyle.[Double]
    shape2.StrokeWeight = 3
    shape2.HorizontalPosition = 200
    shape2.VerticalPosition = 200
    
    Dim para2 As Paragraph = sec.AddParagraph()
    Dim shapegr As ShapeGroup = para2.AppendShapeGroup(200, 400)
    
    shapegr.ChildObjects.Add(New ShapeObject(doc, ShapeType.Rectangle) With { _
    Key .Width = 500, _
    Key .Height = 300, _
    Key .LineStyle = ShapeLineStyle.ThickThin, _
    Key .StrokeColor = System.Drawing.Color.Blue, _
    Key .StrokeWeight = 1.5 _
    })
    shapegr.ChildObjects.Add(New ShapeObject(doc, ShapeType.RightTriangle) With { _
    Key .Width = 500, _
    Key .Height = 300, _
    Key .VerticalPosition = 301, _
    Key .LineStyle = ShapeLineStyle.ThickThin, _
    Key .StrokeColor = System.Drawing.Color.Green, _
    Key .StrokeWeight = 1.5 _
    })
    shapegr.ChildObjects.Add(New ShapeObject(doc, ShapeType.QuadArrow) With { _
    Key .Width = 500, _
    Key .Height = 300, _
    Key .VerticalPosition = 601, _
    Key .LineStyle = ShapeLineStyle.ThickThin, _
    Key .StrokeColor = System.Drawing.Color.Blue, _
    Key .StrokeWeight = 1.5 _
    })
    
    doc.SaveToFile("InsertShapes.docx", FileFormat.Docx2010)
    End Sub
    End Class
    End Namespace

    以上便是如何在 C# 中將文本環(huán)繞在圖像周圍,如果您有其他問題也可以繼續(xù)瀏覽本系列文章,獲取相關(guān)教程,你還可以給我留言或者加入我們的官方技術(shù)交流群(767755948)

    掃碼咨詢


    添加微信 立即咨詢

    電話咨詢

    客服熱線
    023-68661681

    TOP
    三级成人熟女影院,欧美午夜成人精品视频,亚洲国产成人乱色在线观看,色中色成人论坛 (function(){ var bp = document.createElement('script'); var curProtocol = window.location.protocol.split(':')[0]; if (curProtocol === 'https') { bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; } else { bp.src = 'http://push.zhanzhang.baidu.com/push.js'; } var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(bp, s); })();