Re: Basic Newbie Question: What's the ":=" operator for?



See if I interpret this correctly. These are the same:

oDoc.Protect _
Type:=wdAllowOnlyFormFields, _
NoReset:=True

and

oDoc.Protect(wdAllowOnlyFormFields, True)

Using named parameters only makes the code more readable, nothing else?

.