Interaction.CallByName(Object, String, CallType, Object[]) メソッド

定義

オブジェクトに対してメソッドを実行するか、オブジェクトのプロパティを設定または取得します。

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

パラメーター

ObjectRef
Object

必須です。 Object. プロパティまたはメソッドを公開しているオブジェクトへのポインターです。

ProcName
String

必須です。 String. オブジェクトのプロパティまたはメソッドの名前を含む文字列式です。

UseCallType
CallType

必須です。 呼び出されるプロシージャの型を表す、CallType 型の列挙体のメンバーです。 CallType の値は、MethodGetSet のいずれかになります。

Args
Object[]

省略可能。 ParamArray. 呼び出されるプロパティまたはメソッドに渡される引数を格納するパラメーター配列です。

戻り値

オブジェクトに対してメソッドを実行するか、オブジェクトのプロパティを設定または取得します。

例外

UseCallType の値が無効です。MethodGet、または Set のいずれかを指定してください。

次の例では、1 行目で を使用 CallByName してテキスト ボックスの プロパティを Text 設定し、2 行目で プロパティの値を Text 取得し、3 行目で メソッドを Move 呼び出してテキスト ボックスを移動します。

' 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

次の例では、 関数を CallByName 使用してコレクション オブジェクトの Add メソッドと Item メソッドを呼び出します。

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

注釈

関数は CallByName 、実行時にプロパティの取得、プロパティの設定、またはメソッドの呼び出しに使用されます。

適用対象

こちらもご覧ください