Dynamicweb.eCommerce.Products Namespace : ProductFieldValue Class |
'Declaration
<SerializableAttribute()> Public Class ProductFieldValue
[SerializableAttribute()] public class ProductFieldValue
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 } } }
System.Object
Dynamicweb.eCommerce.Products.ProductFieldValue
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