Dynamicweb 8 Documentation
SaveMethodCombo Class
Members  Example 

Represents properties for saving.
Syntax
'Declaration
 
<SerializableAttribute()> 
Public Class SaveMethodCombo 
[SerializableAttribute()] 
public class SaveMethodCombo 
Example
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;
    }
}
Inheritance Hierarchy

System.Object
   Dynamicweb.eCommerce.Products.SaveMethodCombo

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

SaveMethodCombo Members
Dynamicweb.eCommerce.Products Namespace

Send Feedback