BOI - Trying to set price per line in SO

SOLVED

I'm using Business Objects to import sales orders from our point-of-sale system. I have worked all of that out except sometimes the price at the cash registers has been modified from the item price so I need to specify a price per line rather than getting it automatically.  Here is the code I'm trying to use but I get a compiler error on the line where I specify the price:

r = o.oLines.nAddLine()
r = o.oLines.nSetValue("ItemCode$""ABC123")
r = o.oLines.nSetValue("QuantityOrdered"1)
r = 0.0Lines.nSetValue("ExtensionPrice", 99.95)
r = o.oLines.nWrite()
I have tried many things where I have "ExtensionPrice" above but haven't hit on one that works.  I assume it's a numeric value so it should be written properly.  I just need the name of the variable to use to set the price per line on the sales order.