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