Table of Contents

Class Image

Namespace
FileFormat.Slides
Assembly
FileFormat.Slides.dll

This class represents the image within a slide.

public class Image
Inheritance
Image
Inherited Members

Constructors

Image()

Blank constructor to initialize the image object

public Image()

Image(string)

Initialize the image object

public Image(string imagePath)

Parameters

imagePath string

Image path as string

Properties

Facade

Property to get or set the ImageFacade instance.

public ImageFacade Facade { get; set; }

Property Value

ImageFacade

Height

Property to get or set the height of an image.

public double Height { get; set; }

Property Value

double

ImageIndex

Property to get or set the image index within the slide.

public int ImageIndex { get; set; }

Property Value

int

ImagePath

Property to get or set the image path.

public string ImagePath { get; set; }

Property Value

string

Name

Property to get or set the image index within the slide.

public string Name { get; set; }

Property Value

string

Width

Property to get or set the width of an image.

public double Width { get; set; }

Property Value

double

X

Property to get or set the X coordinate of an image.

public double X { get; set; }

Property Value

double

Y

Property to get or set the Y coordinate of an image.

public double Y { get; set; }

Property Value

double

Methods

GetImages(List<ImageFacade>)

Method to get the list of the images within a slide

public static List<Image> GetImages(List<ImageFacade> imageFacades)

Parameters

imageFacades List<ImageFacade>

An object of ImageFacade.

Returns

List<Image>

Remove()

Method to remove the image.

public void Remove()

Update()

public void Update()