Table of Contents

Class FieldType

Namespace
Dynamicweb.Ecommerce.Products
Assembly
Dynamicweb.Ecommerce.dll

Represents product field type object

[Serializable]
public class FieldType
Inheritance
FieldType
Inherited Members

Constructors

FieldType()

Empty constructor

public FieldType()

Properties

DynamicwebAlias

System name for field type.

public string DynamicwebAlias { get; set; }

Property Value

string

Id

ID of FieldType object

public int Id { get; set; }

Property Value

int

IsCustom

public bool IsCustom { get; }

Property Value

bool

Name

Name of field type.

public string Name { get; set; }

Property Value

string

Provider

The name of the FieldTypeProvider added to the field type

public string Provider { get; set; }

Property Value

string

ProviderConfiguration

The configuration of provider

public string ProviderConfiguration { get; set; }

Property Value

string

ProviderInstance

The instance of the FieldTypeProvider added to the field type

public ProductFieldTypeProvider ProviderInstance { get; }

Property Value

ProductFieldTypeProvider

Sort

Sort order for field types in various GUI lists

public int Sort { get; set; }

Property Value

int

SqlPresentation

Field type DDL presentation in MS SQL.

public string SqlPresentation { get; set; }

Property Value

string

Methods

GetValueType()

public Type GetValueType()

Returns

Type
To top