Is there a way to skip the default options, for example, suppose my method declaration looks like this:
procedure MyProc1(var isAttr1: Boolean = FALSE;
var isAttr2: Boolean = FALSE; var isAttr3: Boolean = FALSE);
I cannot call the function as follows:
Self.MyProc1( , , Attr3);
because I donβt want unnecessary var declarations, at the same time I want to get the last return value of the parameter (this is type var)
Thanks for your help in advance.
source
share