Dynamicweb 8 Documentation
ProductGroupField Class
Members  Example 

Represents information about product group.
Object Model
ProductGroupField ClassFieldTypeCollection ClassFieldType Class
Syntax
'Declaration
 
<SerializableAttribute()> 
Public Class ProductGroupField 
[SerializableAttribute()] 
public class ProductGroupField 
Example
class MyPage : System.Web.UI.Page
{
   protected System.Web.UI.WebControls.TextBox NameStr;
   protected System.Web.UI.WebControls.TextBox SystemNameStr;
   protected System.Web.UI.WebControls.TextBox TemplateNameStr;
   protected System.Web.UI.WebControls.CheckBox Locked;
   private ProductGroupField pgf;

   private void Page_Load()
   {
       string pfId = Request["ID"];
       pgf = new ProductGroupField(pfId);
       if (!Page.IsPostBack)
       {
           NameStr.Text = pgf.Name;
           SystemNameStr.Text = pgf.SystemName;
           TemplateNameStr.Text = pgf.TemplateName;
           Locked.Checked = pgf.Locked;
       }
   }
}
Inheritance Hierarchy

System.Object
   Dynamicweb.eCommerce.Products.ProductGroupField

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

ProductGroupField Members
Dynamicweb.eCommerce.Products Namespace

Send Feedback