Default Property or Method

A property or method of an object that does not have to be explicitly stated.

The Name property is the default for the Session object. The following two statements both return the name value for a Session object referred to as Ses1:

SesName = Ses1.Name

-or-

SesName = Ses1

The Item method is the default method of collection objects. The following two statements close the third session in the Sessions collection.

Sessions.Item(3).Close

-or-

Sessions(3).Close