Dynamicweb 8 Documentation
ProductGroupFieldCollection Class
Members  Example 

Represents collection of product group.
Object Model
ProductGroupFieldCollection ClassProductGroupField Class
Syntax
'Declaration
 
<SerializableAttribute()> 
Public Class ProductGroupFieldCollection 
   Inherits System.Collections.ObjectModel.Collection(Of ProductGroupField)
Example
class MyPage : System.Web.UI.Page
{
   private void Page_Load()
   {
       ProductGroupFieldCollection pgfc = Dynamicweb.eCommerce.Common.Application.ProductGroupFields;
       if (!Page.IsPostBack)
       {
            foreach(ProductGroupField pgf in pgfc)
            {
                //TODO:insert your code here
            }
       }
   }
}
Inheritance Hierarchy

System.Object
   System.Collections.ObjectModel.Collection<T>
      Dynamicweb.eCommerce.Products.ProductGroupFieldCollection

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

ProductGroupFieldCollection Members
Dynamicweb.eCommerce.Products Namespace

Send Feedback