Shapes.AddLabel 方法

定义

向文档添加文本标签。 返回一个 Shape 对象,该对象代表文本标签并将其添加到集合中 Shapes

public Microsoft.Office.Interop.Word.Shape AddLabel (Microsoft.Office.Core.MsoTextOrientation Orientation, float Left, float Top, float Width, float Height, ref object Anchor);
abstract member AddLabel : Microsoft.Office.Core.MsoTextOrientation * single * single * single * single * obj -> Microsoft.Office.Interop.Word.Shape
Public Function AddLabel (Orientation As MsoTextOrientation, Left As Single, Top As Single, Width As Single, Height As Single, Optional ByRef Anchor As Object) As Shape

参数

Orientation
MsoTextOrientation

必需 MsoTextOrientation。 文本的方向。MsoTextOrientation 可以是以下常量之一: msoTextOrientationDownward msoTextOrientationHorizontal msoTextOrientationHorizontalRotatedFarEast msoTextOrientationMixed msoTextOrientationUpward msoTextOrientationVertical msoTextOrientationVerticalFarEast 某些常量可能不可用, 取决于语言支持 (美国英语,例如你选择) 或安装。

Left
Single

必需 单一。 标签左边缘相对于定位点的位置(以磅为单位)。

Top
Single

必需 单一。 标签上边缘相对于定位点的位置(以磅为单位)。

Width
Single

必需 单一。 标签的宽度(以磅为单位)。

Height
Single

必需 单一。 标签的高度(以磅为单位)。

Anchor
Object

可选 对象。 一个 Range 对象,表示标签绑定到的文本。 如果 Anchor 指定 了 ,则定位点将定位在定位范围中第一段的开头。 如果省略此参数,则会自动选择定位区域,并且标签相对于页面的上边缘和左边缘进行定位。

返回

适用于