Dynamicweb 8 Documentation
ProductFieldValue Class
Members  Example 

This class saves the new values for ProductField
Object Model
ProductFieldValue ClassProductField Class
Syntax
'Declaration
 
<SerializableAttribute()> 
Public Class ProductFieldValue 
[SerializableAttribute()] 
public class ProductFieldValue 
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.ProductFieldValue

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

ProductFieldValue Members
Dynamicweb.eCommerce.Products Namespace

Send Feedback