public string Code { get; set; }
public String getCode();
public void setCode(
java.lang.String string
);
Code # get and set (PDFJavaScript)
A System.String that contains the JavaScript code. The default value is null.
The Code is the code that will be executed by the JavaScript interpreter if the PDF viewer supports JavaScript.
using Leadtools.WinForms;
using Leadtools;
using Leadtools.Codecs;
using Leadtools.Controls;
using Leadtools.Drawing;
using Leadtools.ImageProcessing;
using Leadtools.Pdf;
using Leadtools.Svg;
public void TestExtractJavaScript_string_string()
{
string fileName = Path.Combine(LEAD_VARS.ImagesDir, "leadtools.pdf");
IList<PDFJavaScript> list = PDFFile.ExtractJavaScript(fileName, null);
if (list == null || list.Count == 0)
Console.WriteLine("The source files does not have any javaScript");
else
{
Console.WriteLine($"The source files has {list.Count} javascript actions");
for (int i = 0; i < list.Count; i++)
{
Console.WriteLine($" [{i}] Name = {list[i].Name}");
Console.WriteLine($" [{i}] Code = {list[i].Code}\n");
}
}
}
static class LEAD_VARS
{
public const string ImagesDir = @"C:\LEADTOOLS22\Resources\Images";
}
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document