AddOleObjectFrame

AddOleObjectFrame(float, float, float, float, IOleEmbeddedDataInfo)

Ajoute un nouvel objet OLE à la fin d’une collection.

public IOleObjectFrame AddOleObjectFrame(float x, float y, float width, float height, 
    IOleEmbeddedDataInfo dataInfo)
ParamètreTaperLa description
xSingleCoordonnée X d’un nouveau cadre OLE.
ySingleCoordonnée Y d’un nouveau cadre OLE.
widthSingleLargeur d’un nouveau cadre OLE.
heightSingleHauteur d’un nouveau cadre OLE.
dataInfoIOleEmbeddedDataInfoInformations sur les données intégréesIOleEmbeddedDataInfo.

Return_Value

Objet OLE créé.

Exemples

Cet exemple illustre l’ajout d’un objet OLE à la fin d’une collection :

[C#]
byte[] fileData = File.ReadAllBytes("test.zip");
IEmbeddedDataInfo dataInfo = new EmbeddedDataInfo(fileData, "zip");
IOleObjectFrame oleObjectFrame = slidees.Shapes.AddOleObjectFrame(150, 20, 50, 50, dataInfo);

Voir également


AddOleObjectFrame(float, float, float, float, string, string)

Ajoute un nouvel objet OLE à la fin d’une collection.

public IOleObjectFrame AddOleObjectFrame(float x, float y, float width, float height, 
    string className, string path)
ParamètreTaperLa description
xSingleCoordonnée X d’un nouveau cadre OLE.
ySingleCoordonnée Y d’un nouveau cadre OLE.
widthSingleLargeur d’un nouveau cadre OLE.
heightSingleHauteur d’un nouveau cadre OLE.
classNameStringNom d’une classe OLE.
pathStringChemin d’accès au fichier lié.

Return_Value

Objet OLE créé.

Voir également