//--------------------------------------------------------------------------------------------------------
// pinEditSpell
//--------------------------------------------------------------------------------------------------------
// please set the license key code here
var globalSpellLicenseKey = "";
// defines the spell checker page ( relative to editor folder)
// for ASP.Net/ASP it should be spell.aspx
// for JSP it should be spell.jsp
// for PHP it depends if ASP.Net or Java is used
var globalSpellPage = "add-on/spell/spell.jsp";
// defines the absolute physical path to the spell checkers dictionary file (.dict)
var globalSpellDictPath = "";
// defines the absolute physical path to the spell checkers user dictionary file (Word)
var globalSpellUserDictPath = "";



//--------------------------------------------------------------------------------------------------------
// pinEditPDF
//--------------------------------------------------------------------------------------------------------
// this parameters defines the client interface only
// when specifying standard then some of client attributes are not available
// Options: "standard" or "professional" 
var globalPDFVersion = "professional";
// please set the license key code here
var globalPDFLicenseKey = "";
// points to the pdf service page, by default: http://localhost/pinEditPDF/pdf.aspx
var globalPDFPage = "http://ip/pinEditPDF/pdf.aspx";
// defines the output path where the pdf files are created
// please use / instead of \
var globalPDFOutputPath = "";
// defines the output url where the pdf files are created
var globalPDFOutputUrl = "";
// define file name. if not defined the file name is generated automatically
var globalPDFFileName = "";// defines paper size
//  1   Letter [8.5 x 11 in]
//  5   Legal [8.5 x 14 in]
//      Executive [7.25 x 10.5 in]
//      Ledger [355.6 x 215.9 mm]
//      Tabloid [11 x 17 in]
//      Screen [10 x 7.5 in]
//  8   A3 [297 x 420 mm]
//  9   A4 [210 x 297 mm]
//      A5 [148 x 210 mm]
//  256 Custom page size
var globalPDFPaperSize = "1";
// Orientation:
// 1  Portrait
// 2  Landscape
var globalPDFOrientation = "1";
// Resolution in dpi
// 75,150,300,600,1200,2400
var globalPDFResolution = "600";
// Document settings
var globalPDFTitle = "";
var globalPDFAuthor = "";
var globalPDFSubject = "";
var globalPDFCreator = "";
var globalPDFKeyWords = "";
// header/footer 
var globalPDFHeader = "";
var globalPDFFooter = "";
// 0 = false
// 1 = true
var globalPDFJPEGCompression = 1;
// unit for all margins and heights
// 1 = inches
// 2 = mm
// 3 = cm
var globalPDFUnit = 1;
// margin
var globalPDFMarginLeft  = 0;
var globalPDFMarginTop   = 0;
var globalPDFMarginRight = 0;
var globalPDFMarginBottom= 0;
var globalPDFHeaderHeight= 0;
var globalPDFFooterHeight= 0;
// misc
var globalPDFConvertForms = 0;
var globalPDFConvertLinks = 0;
var globalPDFOwnerPassword = "";
var globalPDFUserPassword = "";
