CanvasShapes.AddLabel Method 

Adds a text label to a drawing canvas.

Namespace: Microsoft.Office.Interop.Word
Assembly: Microsoft.Office.Interop.Word (in microsoft.office.interop.word.dll)

Usage

Dim Orientation As MsoTextOrientation
Dim Left As Single
Dim Top As Single
Dim Width As Single
Dim Height As Single
Dim returnValue As Shape
Dim canvasShapes1 As CanvasShapes
returnValue = canvasShapes1.AddLabel(Orientation, Left, Top, Width, Height)

Syntax

Function AddLabel( _
    <InAttribute()> ByVal Orientation As MsoTextOrientation, _
    <InAttribute()> ByVal Left As Single, _
    <InAttribute()> ByVal Top As Single, _
    <InAttribute()> ByVal Width As Single, _
    <InAttribute()> ByVal Height As Single _
) As Shape
Shape AddLabel(
    [In] MsoTextOrientation Orientation, 
    [In] float Left, 
    [In] float Top, 
    [In] float Width, 
    [In] float Height
);
public: Shape^ AddLabel(
    MsoTextOrientation^ Orientation, 
    Single Left, 
    Single Top, 
    Single Width, 
    Single Height
);
public Shape AddLabel(
    /*in*/MsoTextOrientation Orientation, 
    /*in*/float Left, 
    /*in*/float Top, 
    /*in*/float Width, 
    /*in*/float Height
);
function AddLabel(
     Orientation : MsoTextOrientation, 
     Left : float, 
     Top : float, 
     Width : float, 
     Height : float
) : Shape;

Parameters

  • Orientation
    The orientation of the text.
  • Left
    The position, measured in points, of the left edge of the label relative to the left edge of the drawing canvas.
  • Top
    The position, measured in points, of the top edge of the label relative to the top edge of the drawing canvas.
  • Width
    The width of the label, in points.
  • Height
    The height of the label, in points.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Development Platforms

Windows XP Home Edition, Windows XP Professional, Windows Server 2003, and Windows 2000

Target Platforms

See Also

Reference

CanvasShapes Interface
Microsoft.Office.Interop.Word Namespace

Other Resources

CanvasShapes Members