> ## Documentation Index
> Fetch the complete documentation index at: https://docs.projectreal.gg/llms.txt
> Use this file to discover all available pages before exploring further.

# getsignalargumentsinfo

> RBXScriptSignal のシグネチャから引数情報の array table を返します。キャプチャされた実行時の引数値は返しません。

<div className="real-function-page">
  ```lua theme={null}
  getsignalargumentsinfo(signal: RBXScriptSignal): {{Name: string, Type: string}}
  ```

  ## 引数

  <ParamField path={"signal"} type={"RBXScriptSignal"} required>
    event descriptor signature を調べる RBXScriptSignal。
  </ParamField>

  ## 戻り値

  <ResponseField name={"argumentInfo"} type={"{{Name: string, Type: string}}"}>
    各エントリに Name と Type の strings が含まれる array table。シグネチャを読み取れない場合、またはエントリがない場合、この関数は Name が arg1、Type が Variant の fallback entry を 1 つ返します。
  </ResponseField>

  ## 例

  Inspect an RBXScriptSignal signature and print each argument name with its type name.

  ```lua theme={null}
  local ReplicatedStorage = game:GetService("ReplicatedStorage")
  local remote = ReplicatedStorage:FindFirstChild("RemoteEvent")

  if remote then
      for _, argument in ipairs(getsignalargumentsinfo(remote.OnClientEvent)) do
          print(argument.Name, argument.Type)
      end
  end
  ```
</div>
