Dynamicweb 8 Documentation
Copy Method (OrderLine)
Example 

Copies this instance.
Syntax
'Declaration
 
Public Function Copy() As OrderLine
public OrderLine Copy()
Example
class MyPage : System.Web.UI.Page
{
   private OrderLine orderLine;
   public OrderLine DoSave()
   {
       OrderLine ol = new OrderLine();
       ol = orderLine.Copy();
       return ol;
   }
}
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

OrderLine Class
OrderLine Members

Send Feedback