PdcCalculation.Billed: Difference between revisions

From External Bemet Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
Line 9: Line 9:


== Code example ==
== Code example ==
This code example returns the total invoiced value of an active calculation.


<source lang="vb">
Sub sGetBilled
dim objCalc


<source lang="vb">
  set objCalc = pdc.ActiveCalculation
 
  msgbox objCalc.Billed


  set objCalc = nothing
End Sub
</source>
</source>


== Availability ==
== Availability ==

Latest revision as of 11:45, 31 July 2013

Declaration

Billed as double

Description

Returns the value of salesinvoices

Notes

This property returns the total invoiced value for the calculation. For stardard article calculations this property obviously always returns 0.

Code example

This code example returns the total invoiced value of an active calculation.

Sub sGetBilled
dim objCalc

  set objCalc = pdc.ActiveCalculation

  msgbox objCalc.Billed

  set objCalc = nothing
End Sub

Availability