CallType Enum

Definition

Indicates the type of procedure being invoked when calling the CallByName function.

public enum class CallType
public enum CallType
type CallType = 
Public Enum CallType
Inheritance
CallType

Fields

Get 2

A property value is being retrieved. This member is equivalent to the Visual Basic constant vbGet.

Let 4

An Object property value is being determined. This member is equivalent to the Visual Basic constant vbLet.

Method 1

A method is being invoked. This member is equivalent to the Visual Basic constant vbMethod.

Set 8

A property value is being determined. This member is equivalent to the Visual Basic constant vbSet.

Remarks

When you call the CallByName function, you can use the following CallType enumeration members in your code in place of the actual values. The UseCallType argument takes the CallType enumeration members.

Applies to

See also