Dynamicweb 8 Documentation
getAllOrderstates(Int32,Boolean) Method
Example 

if set to true don't show deleted.
Gets all order states.
Syntax
'Declaration
 
Public Overloads Shared Function getAllOrderstates( _ 
   ByVal flowId As Integer, _ 
   ByVal DontShowDeleted As Boolean _ 
) As OrderStateCollection
public static OrderStateCollection getAllOrderstates( 
   int flowId,
   bool DontShowDeleted 
)

Parameters

flowId
DontShowDeleted
if set to true don't show deleted.
Example
class MyPage : System.Web.UI.Page
{
   public void RenderAllOrderStates( Rendering.Template t )
   {
      OrderStateCollection orderStates = OrderState.getAllOrderstates( false );
      foreach( Orderstate os in orderStates)
      {
          template.SetTag("Ecom:Order:Orderstate.Name", os.Name);
          template.SetTag("Ecom:Order:Orderstate.Description", os.Description);
      }
   }
}
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

OrderState Class
OrderState Members
Overload List

Send Feedback