Title

ShapeBase.Title property

获取或设置当前形状对象的标题 (caption)。

public string Title { get; set; }

评论

默认为空字符串。

不可能是无效的,但可以是空字符串。

例子

演示如何设置形状的标题。

Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);

// 创建一个形状,为其指定标题,然后将其添加到文档中。
Shape shape = new Shape(doc, ShapeType.Cube);
shape.Width = 200;
shape.Height = 200;
shape.Title = "My cube";

builder.InsertNode(shape);

// 当我们保存带有标题的形状的文档时,
// Aspose.Words 会将该标题存储在形状的替代文本中。
doc.Save(ArtifactsDir + "Shape.Title.docx");

doc = new Document(ArtifactsDir + "Shape.Title.docx");
shape = (Shape)doc.GetChild(NodeType.Shape, 0, true);

Assert.AreEqual(string.Empty, shape.Title);
Assert.AreEqual("Title: My cube", shape.AlternativeText);

也可以看看