PdcCalculation.GetExtraCosts: Difference between revisions

From External Bemet Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
== Declaration ==
== Declaration ==
GetExtraCosts(boExpandAllLevels as Boolean,boInclusiveChildren as Boolean,boDoRecalc as Boolean) as double
GetExtraCosts(boExpandAllLevels as Boolean,boInclusiveChildren as Boolean,boDoRecalc as Boolean, boToeslagen as Boolean, boDeelToeslagen as Boolean) as double


== Description ==
== Description ==
 
This method returns the extra costs of a calculation.


== Notes ==
== Notes ==
Line 9: Line 9:


== Code example ==
== Code example ==
This code example returns the extra costs of an active calculation, including everything like surcharges and subcalculations.
<source lang="vb">
Sub sGetExtraCosts
dim objCalc


  set objCalc = pdc.ActiveCalculation


<source lang="vb">
  msgbox objCalc.GetExtraCosts(true, true, true, true, true)


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


== Availability ==
== Availability ==

Latest revision as of 11:30, 31 July 2013

Declaration

GetExtraCosts(boExpandAllLevels as Boolean,boInclusiveChildren as Boolean,boDoRecalc as Boolean, boToeslagen as Boolean, boDeelToeslagen as Boolean) as double

Description

This method returns the extra costs of a calculation.

Notes

Code example

This code example returns the extra costs of an active calculation, including everything like surcharges and subcalculations.

Sub sGetExtraCosts
dim objCalc

  set objCalc = pdc.ActiveCalculation

  msgbox objCalc.GetExtraCosts(true, true, true, true, true)

  set objCalc = nothing
End Sub

Availability