I can successfully add text to a pdf and store the object's ID in this way:
int ID = theDoc.AddText(ItemText);
However, when I try to update the item's text on the pdf in the following way, it does not work.
theDoc.SetInfo(ID, ":Text", ItemText);
Here is the documentation on the SetInfo function: http://www.websupergoo.com/helppdfnet/source/5-abcpdf/doc/1-methods/setinfo.htm
The function takes in the pdf object's ID, the type, and the data to be inserted. I believe my error is in the second parameter (type), but I am not sure how I can make the type more descriptive.
Any ideas or input would be awesome.