Table of Contents

Class ImagePattern

Namespace
Dynamicweb.Ecommerce.Frontend
Assembly
Dynamicweb.Ecommerce.dll
Represents the image pattern.
[DataContract]
[Serializable]
public class ImagePattern
Inheritance
ImagePattern
Inherited Members

Constructors

ImagePattern()

Initializes a new instance of the class.
public ImagePattern()

ImagePattern(string, string, string)

Initializes a new instance of the class.
public ImagePattern(string type, string name, string value)

Parameters

type string
The type.
name string
The name.
value string
The value.

ImagePattern(string, string, string, string, string)

Initializes a new instance of the class.
[Obsolete("Exists for backward compatability only")]
public ImagePattern(string type, string name, string value, string width, string height)

Parameters

type string
The type.
name string
The name.
value string
The value.
width string
The width.
height string
The height.

Properties

Height

Gets or sets the height.
[DataMember(Name = "height")]
[Obsolete("Not use. Exists for backward compatibility, serializeable purposes only.")]
public string Height { get; set; }

Property Value

string

IsDefault

Gets or sets the pattern.
[DataMember(Name = "isdefault")]
public bool IsDefault { get; set; }

Property Value

bool

Name

Gets or sets the name.
[DataMember(Name = "name")]
public string Name { get; set; }

Property Value

string

TemplateTag

Gets the template tag.
public string TemplateTag { get; }

Property Value

string

Type

Gets or sets the type.
public string Type { get; set; }

Property Value

string

Value

Gets or sets the pattern.
[DataMember(Name = "pattern")]
public string Value { get; set; }

Property Value

string

Width

Gets or sets the width.
[DataMember(Name = "width")]
[Obsolete("Not use. Exists for backward compatibility, serializeable purposes only.")]
public string Width { get; set; }

Property Value

string
To top