Table of Contents

Class ImageExportSettings

Namespace
Dynamicweb.Ecommerce.ProductCatalog
Assembly
Dynamicweb.Ecommerce.dll
The settings for the image exporting.
public sealed class ImageExportSettings
Inheritance
ImageExportSettings
Inherited Members

Properties

AssetCategories

Defines a list of categories that will be taken from the products' assetcategories and exported.
public IEnumerable<string> AssetCategories { get; set; }

Property Value

IEnumerable<string>

Dpi

The DPI of the images of the products being exported. If it's 0 or not set, it will default to 72 DPI.
public int Dpi { get; set; }

Property Value

int

EmbedProfile

Currently not used.
public bool EmbedProfile { get; set; }

Property Value

bool

Height

The height of the images of the products being exported will be. If it's 0 or not set, it will default to 10000 or the images actual heigth.
public int Height { get; set; }

Property Value

int

ImageFormat

The format the images of the products being exported is in. Will default to Jpg if nothing is sent in.
public string ImageFormat { get; set; }

Property Value

string

Width

The width of the images of the products being exported will be. If it's 0 or not set, it will default to 10000 or the images actual width.
public int Width { get; set; }

Property Value

int
To top