Gets or sets the invoice number for the invoice being adjusted.

Namespace:  BargeEx
Assembly:  BargeEx (in BargeEx.dll)
Version: 3.0.400.140 (3.0.400.140)

Syntax

C#
public virtual string InvoiceOriginalNumber { get; set; }
Visual Basic (Declaration)
Public Overridable Property InvoiceOriginalNumber As String
Visual C++
public:
virtual property String^ InvoiceOriginalNumber {
	String^ get ();
	void set (String^ value);
}

Property Value

If this is an adjustment invoice, this contains the invoice number for the invoice being adjusted. The default is a null reference (Nothing in Visual Basic).

Remarks

If this property is set, the invoice is considered to be an adjustment invoice. An adjustment invoice is an invoice that adjusts a previously sent invoice.

The InvoiceOriginalNumberSpecified property indicates whether or not this property will be included in the serialized class or generated document. The InvoiceOriginalNumberSpecified property is automatically set to true when this property is set.

See Also