Gets or sets any other details about the payment terms that are not covered by the due date or net days properties.

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

Syntax

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

Property Value

Other details about the payment terms that are not covered by the due date (InvoiceDueDate) or net days (InvoiceNetDays) properties. The default is a null reference (Nothing in Visual Basic).

Remarks

This property should only be used if the InvoiceDueDate or the InvoiceNetDays properties cannot fully identify the payment terms.

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

See Also