dotConnect for QuickBooks Documentation
Devart.Data.QuickBooks Namespace / QuickBooksCommand Class / Clone Method
Example

In This Topic
    Clone Method (QuickBooksCommand)
    In This Topic
    Creates a new object that is a copy of the current QuickBooksCommand instance.
    Creates a new object that is a copy of the current QuickBooksCommand instance.
    Syntax
    'Declaration
     
    Public Shadows Function Clone() As QuickBooksCommand
    public new QuickBooksCommand Clone()

    Return Value

    A new QuickBooksCommand object in which all property values are the same as the original.
    Remarks
    Use this method when you need to create a new QuickBooksCommand object that is absolutely like existing one.
    Example
    This example shows how to clone a QuickBooksCommand . To make sure all the properties are inherited, one of them (CommandText) is written to the console.
    public void CloneACommand()
    {
      QuickBooksCommand quickBooksCommand = new QuickBooksCommand("SELECT * FROM Customer");
            QuickBooksCommand quickBooksCommand2 = (QuickBooksCommand)quickBooksCommand.Clone();
      Console.WriteLine(quickBooksCommand2.CommandText);
    }
    Public Sub CloneACommand()
      Dim quickBooksCommand As New QuickBooksCommand("SELECT * FROM Customer")
      Dim quickBooksCommand2 As QuickBooksCommand = CType(quickBooksCommand.Clone(), QuickBooksCommand)
      Console.WriteLine(quickBooksCommand2.CommandText)
    End Sub
    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