I am thinking of creating my own-defined function at the Stimulsoft designer code where I can re-use it on calculations.
As a simple start, I wanted to calculate the sum of 2 values.
Say, a get_sum function with paramaters value1, value2 so..
it would look something like(?):
public decimal get_sum(decimal value1, decimal value2){
return (value1 + value2);
}
my question were: i'll be using c++ codes, where in the code area am i going to insert my get_sum function?
what is the syntax then and what tips can anyone share on creating functions?
Thanks in advance!
