How to pass a variable in vba code by Invoke VBA Activity

Hi Team,

I have pass a variable in the vba code using Invoke Vba Activity.

How would I achieve this , Please help!

@Karan28 You can pass the variables using EntryMethodParameters property of the Invoke VBA Activity in the Form of an array.

Hey , I need to change the row length of the excel. and the position of the row I want to pass it via variable.But I am able to write only static code.
Like this
Sub Main()
With Worksheets(“PL”).Rows(“5”)
.RowHeight = 19.5
End Sub