Dynamicweb 8 Documentation
ProductField Class
Members  Example 

Provides information about a product field.
Object Model
ProductField ClassFieldTypeCollection ClassFieldType Class
Syntax
'Declaration
 
<SerializableAttribute()> 
Public Class ProductField 
[SerializableAttribute()] 
public class ProductField 
Example
class RenderProduct
{
   public void RenderProductGroupCustomFields(ProductGroupFieldValueCollection ProductGroupFieldValues)
   {
       ProductFieldValueCollection pfvCol = new ProductFieldValueCollection();

       foreach (ProductGroupFieldValue pgfv in ProductGroupFieldValues)
       {
           ProductField pf = new ProductField();
           ProductFieldValue pfv = new ProductFieldValue(pf, pgfv.Value);
 
           pfv.ProductField.Types = pgfv.ProductGroupField.Types;
           pfv.ProductField.TemplateName = pgfv.ProductGroupField.TemplateName;
           pfv.ProductField.SystemName = pgfv.ProductGroupField.SystemName;
           pfv.Value = pgfv.Value;

           pfvCol.Add(pfv);
       }

       if (pfvCol.Count > 0)
       {
           //TODO: insert your code here
       }
   }
}
Inheritance Hierarchy

System.Object
   Dynamicweb.eCommerce.Products.ProductField

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

ProductField Members
Dynamicweb.eCommerce.Products Namespace

Send Feedback