What does := mean in VBA -


this might simple question i'm searching online answer , can't seem find it.

with use of code below example, these symbols mean. symbol 1 :="" symbol 2 :=_

application.printout filename:="", range:=wdprintalldocument, item:= _ 

this called "named argument". meaning can pass arguments printout in order like, long name them on left side of ":=" operator.

alternatively need provide arguments in exact order specified here https://msdn.microsoft.com/en-us/library/office/ff840681.aspx

more on named arguments in vba here: https://msdn.microsoft.com/en-us/library/office/gg251503.aspx


Comments