|
Tutorial - Activate Links |
Top Previous Next |
|
The application example activates the web links present in the PDF document.
[VB]
' Load the Document PDFDoc.LoadFromFile (InputFile9) ' Calling activate links PDFDoc.ActivateLinks ' Load the Document PDFDoc.SaveToFile (OutputFile)
[VC++]
// Load the Document PDFDoc.LoadFromFile(InputFile9); //Call Activatelinks PDFDoc.ActivateLinks(); // Save the Document PDFDoc.SaveToFile(OutputFile);
[CS]
PDFDoc.LoadFromFile(InputFile9); PDFDoc.ActivateLinks(); PDFDoc.SaveToFile(OutputFile); |