Table of Contents

ExcelChart.GetImageProperties Method

Overloads

ExcelChart.GetImageProperties(Int32)

Returns image position and size.

Syntax

Namespace: FlexCel.Core

public TImageProperties GetImageProperties(Int32 imageIndex)

Parameters

<-> Parameter Type Description
imageIndex Int32 Index of the image (1 based)

Returns

Image position and size.

See also

ExcelChart.GetImageProperties(Int32, Boolean, String)

Returns image position and size.

Syntax

Namespace: FlexCel.Core

public abstract TImageProperties GetImageProperties(Int32 imageIndex, Boolean usesObjectIndex, String objectPath)

Parameters

<-> Parameter Type Description
imageIndex Int32 Index of the image (1 based)
usesObjectIndex Boolean If false (the default) then imageIndex is an index to the list of images.
When true imageIndex is an index to the list of all objects in the sheet.
objectPath String Path to the object, when the object is grouped with others. This parameter only has meaning if usesObjectIndex is true.

If it is "absolute" (it starts with "\"), then the path includes the objectIndex, and the objectIndex is not used. An object path of "\1\2\3" is exactly the same as using objectIndex = 1 and objectPath = "2\3"

Returns

Image position and size.

See also