PdcCalculation.GetOperationCosts: Difference between revisions
Jump to navigation
Jump to search
Created page with "== Declaration == == Description == == Notes == == Code example == <source lang="vb"> </source> == Availability ==" |
|||
(3 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
== Declaration == | == Declaration == | ||
GetOperationCosts(boExpandAllLevels as Boolean,boInclusiveChildren as Boolean,boDoRecalc as Boolean, boToeslagen as Boolean, boDeelToeslagen as Boolean) as double | |||
== Description == | == Description == | ||
This method returns the operation costs (precalculation) of a calculation. | |||
== Notes == | == Notes == | ||
Line 9: | Line 9: | ||
== Code example == | == Code example == | ||
This code example returns the operation costs of an active calculation, including everything like surcharges and subcalculations. | |||
<source lang="vb"> | |||
Sub sGetOperationCosts | |||
dim objCalc | |||
set objCalc = pdc.ActiveCalculation | |||
msgbox objCalc.GetOperationCosts(true, true, true, true, true) | |||
set objCalc = nothing | |||
End Sub | |||
</source> | </source> | ||
== Availability == | == Availability == |
Latest revision as of 10:56, 3 May 2016
Declaration
GetOperationCosts(boExpandAllLevels as Boolean,boInclusiveChildren as Boolean,boDoRecalc as Boolean, boToeslagen as Boolean, boDeelToeslagen as Boolean) as double
Description
This method returns the operation costs (precalculation) of a calculation.
Notes
Code example
This code example returns the operation costs of an active calculation, including everything like surcharges and subcalculations.
Sub sGetOperationCosts
dim objCalc
set objCalc = pdc.ActiveCalculation
msgbox objCalc.GetOperationCosts(true, true, true, true, true)
set objCalc = nothing
End Sub