Shapes.AddPicture 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 AddPicture (string FileName, ref object LinkToFile, ref object SaveWithDocument, ref object Left, ref object Top, ref object Width, ref object Height, ref object Anchor);
abstract member AddPicture : string * obj * obj * obj * obj * obj * obj * obj -> Microsoft.Office.Interop.Word.Shape
Public Function AddPicture (FileName As String, Optional ByRef LinkToFile As Object, Optional ByRef SaveWithDocument As Object, Optional ByRef Left As Object, Optional ByRef Top As Object, Optional ByRef Width As Object, Optional ByRef Height As Object, Optional ByRef Anchor As Object) As Shape
Parameters
- FileName
- String
Required String. The path and file name of the picture.
- LinkToFile
- Object
Optional Object. True to link the picture to the file from which it was created. False to make the picture an independent copy of the file. The default value is False.
- SaveWithDocument
- Object
Optional Object. True to save the linked picture with the document. The default value is False.
- Left
- Object
Optional Object. The position, measured in points, of the left edge of the new picture relative to the anchor.
- Top
- Object
Optional Object. The position, measured in points, of the top edge of the new picture relative to the anchor.
- Width
- Object
Optional Object. The width of the picture, in points.
- Height
- Object
Optional Object. The height of the picture, in points.
- Anchor
- Object
Optional Object. The range to which the picture 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, however, the anchor is placed automatically and the picture is positioned relative to the top and left edges of the page.