AddWordArt

ShapeCollection.AddWordArt method

自 Excel 2007.s 添加预设艺术字

public Shape AddWordArt(PresetWordArtStyle style, string text, int upperLeftRow, int top, 
    int upperLeftColumn, int left, int height, int width)
范围类型描述
stylePresetWordArtStyle预设的艺术字样式。
textString文本。
upperLeftRowInt32左上行索引。
topInt32表示形状与其左行的垂直偏移量,以像素为单位。
upperLeftColumnInt32左上列索引。
leftInt32表示形状与其左列的水平偏移量,以像素为单位。
heightInt32表示形状的高度,以像素为单位。
widthInt32表示形状的宽度,以像素为单位。

例子


[C#]
//添加一个艺术字
Shape wordArt2 = shapes.AddWordArt(PresetWordArtStyle.WordArtStyle1, "WordArt", 3, 0, 3, 0, 50, 200);

也可以看看