Dynamicweb 8 Documentation
getRoundings Method
Example 

Gets the collection of Rounding objects.
Syntax
'Declaration
 
Public Shared Function getRoundings() As RoundingCollection
public static RoundingCollection getRoundings()
Example
class MyPage : System.Web.UI.Page
{
   public void DoSome()
   {
       Dynamicweb.eCommerce.Prices.Rounding rounding = new Dynamicweb.eCommerce.Prices.Rounding();
       foreach (Dynamicweb.eCommerce.Prices.Rounding r in Dynamicweb.eCommerce.Prices.Rounding.getRoundings())
       {
           //TODO: insert your code here            
       }
   }
}
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

Rounding Class
Rounding Members

Send Feedback