Dynamicweb.eCommerce.Products Namespace : SaveMethodCombo Class |
'Declaration
<SerializableAttribute()> Public Class SaveMethodCombo
[SerializableAttribute()] public class SaveMethodCombo
class MyPage : System.Web.UI.Page { public SaveMethodComboCollection SaveMethodCombos() { SaveMethodComboCollection newSaveMethodComboColl = new SaveMethodComboCollection(); foreach (ProductDBField productDBField in Enum.GetValues(typeof(ProductDBField))) { SaveMethodCombo newSaveMethodCombo = new SaveMethodCombo(); newSaveMethodCombo.ProductDBField = productDBField; newSaveMethodCombo.UpdateType = UpdateType.VariantDependent; newSaveMethodComboColl.Add(newSaveMethodCombo); } return newSaveMethodComboColl; } }
System.Object
Dynamicweb.eCommerce.Products.SaveMethodCombo
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