The Visual Basic .NET Programming Language

 <  Day Day Up  >  

The CallType enumeration is used by the CallByName function to indicate the call type to make.

Method = 1

The call is a method call. Constant equivalent: vbMethod .

Get = 2

The call is a property get. Constant equivalent: vbGet .

Let = 4

The call is a property value assignment. Constant equivalent: vbLet .

Advanced

This value is valid only when you are calling a property on a COM object that has a property Let accessor.

Set = 8

The call is a property set. Constant equivalent: vbSet .

 <  Day Day Up  >  

Категории