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 .
Set = 8 The call is a property set. Constant equivalent: vbSet . |
< Day Day Up > |