TextPath

TextPath class

定义(艺术字对象的)文本路径的文本和格式。

要了解更多信息,请访问使用形状文档文章。

public class TextPath

特性

姓名描述
Bold { get; set; }如果字体格式为粗体,则为 True。
FitPath { get; set; }定义文本是否适合形状的路径。
FitShape { get; set; }定义文本是否适合形状的边界框。
FontFamily { get; set; }定义文本路径字体系列。
Italic { get; set; }如果字体格式为斜体,则为 True。
Kerning { get; set; }确定是否打开字距调整。
On { get; set; }定义是否显示文本。
ReverseRows { get; set; }确定行的布局顺序是否颠倒。
RotateLetters { get; set; }确定文本的字母是否旋转。
SameLetterHeights { get; set; }确定所有字母是否具有相同的高度,无论初始大小写如何。
Shadow { get; set; }定义是否将阴影应用于文本路径上的文本。
Size { get; set; }定义字体大小(以磅为单位)。
SmallCaps { get; set; }如果字体格式为小写大写字母,则为 True。
Spacing { get; set; }定义文本的间距量。 1 表示 100%.
StrikeThrough { get; set; }如果字体格式为删除线文本,则为 True。
Text { get; set; }定义文本路径的文本。
TextPathAlignment { get; set; }定义文本的对齐方式。
Trim { get; set; }确定是否删除文本上方和下方的额外空格。
Underline { get; set; }如果字体带下划线则为真。
XScale { get; set; }确定是否使用直文本路径而不是形状路径。

评论

使用TextPath属性来访问形状的艺术字属性。 您不创建TextPath直接上课。

例子

演示如何使用艺术字。

public void InsertTextPaths()
{
    Document doc = new Document();

    // 插入一个 WordArt 对象,以我们可以在 Microsoft Word 中使用鼠标调整大小和移动的形状显示文本。
    // 提供“ShapeType”作为参数来设置艺术字的形状。
    Shape shape = AppendWordArt(doc, "Hello World! This text is bold, and italic.", 
        "Arial", 480, 24, Color.White, Color.Black, ShapeType.TextPlainText);

    // 使用相应的属性将“粗体”和“斜体”格式设置应用于文本。
    shape.TextPath.Bold = true;
    shape.TextPath.Italic = true;

    // 以下是各种其他与文本格式相关的属性。
    Assert.False(shape.TextPath.Underline);
    Assert.False(shape.TextPath.Shadow);
    Assert.False(shape.TextPath.StrikeThrough);
    Assert.False(shape.TextPath.ReverseRows);
    Assert.False(shape.TextPath.XScale);
    Assert.False(shape.TextPath.Trim);
    Assert.False(shape.TextPath.SmallCaps);

    Assert.AreEqual(36.0, shape.TextPath.Size);
    Assert.AreEqual("Hello World! This text is bold, and italic.", shape.TextPath.Text);
    Assert.AreEqual(ShapeType.TextPlainText, shape.ShapeType);

    // 使用“On”属性显示/隐藏文本。
    shape = AppendWordArt(doc, "On set to \"true\"", "Calibri", 150, 24, Color.Yellow, Color.Red, ShapeType.TextPlainText);
    shape.TextPath.On = true;

    shape = AppendWordArt(doc, "On set to \"false\"", "Calibri", 150, 24, Color.Yellow, Color.Purple, ShapeType.TextPlainText);
    shape.TextPath.On = false;

    // 使用“Kerning”属性启用/禁用某些字符之间的字距调整间距。
    shape = AppendWordArt(doc, "Kerning: VAV", "Times New Roman", 90, 24, Color.Orange, Color.Red, ShapeType.TextPlainText);
    shape.TextPath.Kerning = true;

    shape = AppendWordArt(doc, "No kerning: VAV", "Times New Roman", 100, 24, Color.Orange, Color.Red, ShapeType.TextPlainText);
    shape.TextPath.Kerning = false;

    // 使用“Spacing”属性设置字符之间的自定义间距,范围为 0.0(无)到 1.0(默认)。
    shape = AppendWordArt(doc, "Spacing set to 0.1", "Calibri", 120, 24, Color.BlueViolet, Color.Blue, ShapeType.TextCascadeDown);
    shape.TextPath.Spacing = 0.1;

    // 将“RotateLetters”属性设置为“true”,将每个字符逆时针旋转 90 度。
    shape = AppendWordArt(doc, "RotateLetters", "Calibri", 200, 36, Color.GreenYellow, Color.Green, ShapeType.TextWave);
    shape.TextPath.RotateLetters = true;

    // 将“SameLetterHeights”属性设置为“true”以使每个字符的 x 高度等于大写字母高度。
    shape = AppendWordArt(doc, "Same character height for lower and UPPER case", "Calibri", 300, 24, Color.DeepSkyBlue, Color.DodgerBlue, ShapeType.TextSlantUp);
    shape.TextPath.SameLetterHeights = true;

    // 默认情况下,文本的大小将始终缩放以适合包含形状的大小,从而覆盖文本大小设置。
    shape = AppendWordArt(doc, "FitShape on", "Calibri", 160, 24, Color.LightBlue, Color.Blue, ShapeType.TextPlainText);
    Assert.True(shape.TextPath.FitShape);
    shape.TextPath.Size = 24.0;

    // 如果我们将“FitShape:”属性设置为“false”,文本将保持尺寸
    // 无论形状的大小如何,“Size”属性都指定它。
    // 还可以使用“TextPathAlignment”属性将文本与形状的一侧对齐。
    shape = AppendWordArt(doc, "FitShape off", "Calibri", 160, 24, Color.LightBlue, Color.Blue, ShapeType.TextPlainText);
    shape.TextPath.FitShape = false;
    shape.TextPath.Size = 24.0;
    shape.TextPath.TextPathAlignment = TextPathAlignment.Right;

    doc.Save(ArtifactsDir + "Shape.InsertTextPaths.docx");
}

/// <summary>
/// 插入一个新段落,其中包含艺术字形状。
/// </summary>
private static Shape AppendWordArt(Document doc, string text, string textFontFamily, double shapeWidth, double shapeHeight, Color wordArtFill, Color line, ShapeType wordArtShapeType)
{
    // 创建一个内联形状,它将用作艺术字的容器。
    // 如果我们为其指定艺术字指定的 ShapeType,则该形状只能是有效的艺术字形状。
    // 这些类型的描述中将包含“艺术字对象”,
    // 并且它们的枚举器常量名称都以“Text”开头。
    Shape shape = new Shape(doc, wordArtShapeType)
    {
        WrapType = WrapType.Inline,
        Width = shapeWidth,
        Height = shapeHeight,
        FillColor = wordArtFill,
        StrokeColor = line
    };

    shape.TextPath.Text = text;
    shape.TextPath.FontFamily = textFontFamily;

    Paragraph para = (Paragraph)doc.FirstSection.Body.AppendChild(new Paragraph(doc));
    para.AppendChild(shape);
    return shape;
}

也可以看看