getarg
warning
This function starts with lowercase letter.
คำอธิบาย
Get an argument that was passed to a function.
Name | Description |
---|---|
arg | The argument sequence number. Use 0 for first argument. |
index | The index (in case the argument is an array). |
ส่งคืน
The value of the argument.
ตัวอย่าง
SomeFunc(...)
{
printf("%i", getarg(3));
}
public OnFilterScriptInit()
{
SomeFunc(1, 3, 3, 7);
}
// Output: 7. The fourth argument (index 3) is 7.