Shapes.AddCallout Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
public Microsoft.Office.Interop.Word.Shape AddCallout (Microsoft.Office.Core.MsoCalloutType Type, float Left, float Top, float Width, float Height, ref object Anchor);
abstract member AddCallout : Microsoft.Office.Core.MsoCalloutType * single * single * single * single * obj -> Microsoft.Office.Interop.Word.Shape
Public Function AddCallout (Type As MsoCalloutType, Left As Single, Top As Single, Width As Single, Height As Single, Optional ByRef Anchor As Object) As Shape
Parameters
- Type
- MsoCalloutType
Required MsoCalloutType. The type of callout.MsoCalloutType can be one of these constants. msoCalloutOne – Positions callout line straight down along the left edge of the callout box. msoCalloutTwo – Positions callout line diagonally down and away from the left edge of the callout box. msoCalloutThree – Positions callout line straight out and then diagonally down and away from the left edge of the callout box. msoCalloutFour – Positions callout line along the left edge of the callout text box. msoCalloutMixed – A return value indicating that more than one MsoCalloutType exists in a range or selection.
- Left
- Single
Required Single. The position, in points, of the left edge of the callout's bounding box.
- Top
- Single
Required Single. The position, in points, of the top edge of the callout's bounding box.
- Width
- Single
Required Single. The width, in points, of the callout's bounding box.
- Height
- Single
Required Single. The height, in points, of the callout's bounding box.
- Anchor
- Object
Optional Object. A Range object that represents the text to which the callout is bound. If Anchor
is specified, the anchor is positioned at the beginning of the first paragraph in the anchoring range. If this argument is omitted, the anchoring range is selected automatically and the callout is positioned relative to the top and left edges of the page.
Returns
Remarks
You can insert a greater variety of callouts, such as balloons and clouds, using the AddShape(Int32, Single, Single, Single, Single, Object) method.