Skipp default parameters in Delphi
- by Vijay Bobba
Hi
Is there any way to skip the default params, say suppose my method declaration is like this:
procedure Myfunc1(var isAttr1: Boolean = FALSE;
isAttr2: Boolean = FALSE;
isAttr3: Boolean = FALSE);
I can't call the function like this:
Self.Myfunc1( , , Attr3);
because I don't want unnecessary var…