OnTime Extension SDK Documentation
OnTime.Extensions.SDK Namespace / InvoiceBase Class / IsPaid Property



In This Topic
    IsPaid Property
    In This Topic
    Indicates if this Invoice has been paid in full.
    Syntax
    'Declaration
     
    
    <DataMemberAttribute(False)>
    <DisplayNameAttribute("Has Been Paid")>
    Public Property IsPaid As Boolean
    'Usage
     
    
    Dim instance As InvoiceBase
    Dim value As Boolean
     
    instance.IsPaid = value
     
    value = instance.IsPaid
    [DataMember(false)]
    [DisplayName("Has Been Paid")]
    public bool IsPaid {get; set;}
    [DataMember(false)]
    [DisplayName("Has Been Paid")]
    public:
    property bool IsPaid {
       bool get();
       void set (    bool value);
    }
    Remarks
    An Invoice is considered as 'paid' when the sum of all Payment amounts made against this Invoice exceed the TotalAmount for this Invoice.
    Requirements

    Target Platforms: Windows 7, Windows 8, Windows 8.1, Windows 10, Windows 11, Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2012, Windows Server 2012 R2, Windows Server 2016, Windows Server 2019, Windows Server 2022

    See Also