Interaction.CallByName(Object, String, CallType, Object[]) Metodo

Definizione

Esegue un metodo in un oggetto oppure imposta o restituisce una proprietà in un oggetto.

public:
 static System::Object ^ CallByName(System::Object ^ ObjectRef, System::String ^ ProcName, Microsoft::VisualBasic::CallType UseCallType, ... cli::array <System::Object ^> ^ Args);
public static object? CallByName (object? ObjectRef, string ProcName, Microsoft.VisualBasic.CallType UseCallType, params object?[] Args);
public static object CallByName (object ObjectRef, string ProcName, Microsoft.VisualBasic.CallType UseCallType, params object[] Args);
static member CallByName : obj * string * Microsoft.VisualBasic.CallType * obj[] -> obj
Public Function CallByName (ObjectRef As Object, ProcName As String, UseCallType As CallType, ParamArray Args As Object()) As Object

Parametri

ObjectRef
Object

Obbligatorio. Object. Puntatore all'oggetto che espone la proprietà o il metodo.

ProcName
String

Obbligatorio. String. Espressione stringa contenente il nome della proprietà o del metodo dell'oggetto.

UseCallType
CallType

Obbligatorio. Membro di enumerazione di tipo CallType che rappresenta il tipo di routine chiamato. Il valore di CallType può essere Method, Get o Set.

Args
Object[]

facoltativo. ParamArray. Matrice di parametri contenente gli argomenti da passare alla proprietà o al metodo da chiamare.

Restituisce

Esegue un metodo in un oggetto oppure imposta o restituisce una proprietà in un oggetto.

Eccezioni

Valore UseCallType non valido. Deve essere Method, Get o Set.

Esempio

Nell'esempio seguente la prima riga usa CallByName per impostare la Text proprietà di una casella di testo, la seconda riga recupera il valore della Text proprietà e la terza riga richiama il Move metodo per spostare la casella di testo.

' Imports statements must be at the top of a module.
Imports Microsoft.VisualBasic.CallType
Sub TestCallByName1()
    'Set a property.
    CallByName(TextBox1, "Text", CallType.Set, "New Text")

    'Retrieve the value of a property.
    MsgBox(CallByName(TextBox1, "Text", CallType.Get))

    'Call a method.
    CallByName(TextBox1, "Hide", CallType.Method)
End Sub

Nell'esempio successivo viene usata la CallByName funzione per richiamare i Add metodi e Item di un oggetto raccolta.

Public Sub TestCallByName2()
    Dim col As New Collection()

    'Store the string "Item One" in a collection by 
    'calling the Add method.
    CallByName(col, "Add", CallType.Method, "Item One")

    'Retrieve the first entry from the collection using the 
    'Item property and display it using MsgBox().
    MsgBox(CallByName(col, "Item", CallType.Get, 1))
End Sub

Commenti

La CallByName funzione viene usata in fase di esecuzione per ottenere una proprietà, impostare una proprietà o richiamare un metodo.

Si applica a

Vedi anche