// Call Function for Quantity Adjustment
{
this.ThisLib.QtyAdj(localCompany, localPartNum, localOffcutInches, localKeyOne, localPartChkBoxName);
}
}
The variables being listed are in the function that you are calling from to fill in the values the other one is expecting in in Inputs.
Edit:
I should clarify that I suppose as upon rereading it it is poorly written.
QtyAdj is the name of the function I am calling, it lives in the same library so it is ThisLib, I have not called across libraries but I assume if your library had access to another library in it’s security tab you could replace that with the name of the other library. The brackets are a listing of what I want to pass from the current, calling function, to the function that is being called, in the order that the Signature has them for inputs.