Dynamicweb 8 Documentation
ProductFieldCollection Class
Members  Example 

Represents a collection of ProductField objects.
Object Model
ProductFieldCollection ClassProductField Class
Syntax
Example
class MyPage : System.Web.UI.Page
{
    private bool FieldInOwnerTable(string checkName, string checkId)
    {
        bool returnBool = false;

        ProductFieldCollection pf = ProductField.FindProductFieldsBySystemName(checkName, checkId);
       if (pf.Count > 0)
        {
            returnBool = true;
        }
        return returnBool;
    }
}
Inheritance Hierarchy

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

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

ProductFieldCollection Members
Dynamicweb.eCommerce.Products Namespace

Send Feedback