Shapes.AddPicture Method

Definition

Creates a picture from an existing file. Returns a Shape object that represents the new picture.

public:
 Microsoft::Office::Interop::Excel::Shape ^ AddPicture(System::String ^ Filename, Microsoft::Office::Core::MsoTriState LinkToFile, Microsoft::Office::Core::MsoTriState SaveWithDocument, float Left, float Top, float Width, float Height);
public Microsoft.Office.Interop.Excel.Shape AddPicture (string Filename, Microsoft.Office.Core.MsoTriState LinkToFile, Microsoft.Office.Core.MsoTriState SaveWithDocument, float Left, float Top, float Width, float Height);
Public Function AddPicture (Filename As String, LinkToFile As MsoTriState, SaveWithDocument As MsoTriState, Left As Single, Top As Single, Width As Single, Height As Single) As Shape

Parameters

Filename
String

Required String. The file from which the OLE object is to be created.

LinkToFile
MsoTriState

Required MsoTriState. The file to link to. Can be one of these MsoTriState constants:msoCTruemsoFalse To make the picture an independent copy of the file.msoTriStateMixedmsoTriStateTogglemsoTrue To link the picture to the file from which it was created.

SaveWithDocument
MsoTriState

Required MsoTriState. To save the picture with the document.

Left
Single

Required Single. The position (in points) of the upper-left corner of the picture relative to the upper-left corner of the document.

Top
Single

Required Single. The position (in points) of the upper-left corner of the picture relative to the top of the document.

Width
Single

Required Single. The width of the picture, in points.

Height
Single

Required Single. The height of the picture, in points.

Returns

Applies to