PdcCalculation.Billed: Difference between revisions
Jump to navigation
Jump to search
Created page with "== Declaration == == Description == == Notes == == Code example == <source lang="vb"> </source> == Availability ==" |
No edit summary |
||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
== Declaration == | == Declaration == | ||
Billed as double | |||
== Description == | == Description == | ||
Returns the value of salesinvoices | |||
== Notes == | == 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. | |||
= | <source lang="vb"> | ||
Sub sGetBilled | |||
dim objCalc | |||
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