You can't!
Excel file structure is:
Workbook->Worksheets collection
See:
Workbook Object (Excel)[
^]
To be able to "send current worksheet", you need to save a copy of that sheet into new workbook, then save it as new workbook:
ThisWorkbook.ActiveSheet.Copy
ActiveWorkbook.SaveAs "Drive:\Path\newName.xslx"
ActiveWorkbook.Close
Now, you can use that workbook and pass its full-path to your function.
For further details, please see:
How to: Programmatically Open Workbooks[
^]
How to: Programmatically Copy Worksheets[
^]
How to: Programmatically Close Workbooks[
^]