update 20241127
This commit is contained in:
@@ -45,6 +45,9 @@
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
<HintPath>..\Logging\bin\Debug\Logging.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\Newtonsoft.Json.13.0.3\lib\net45\Newtonsoft.Json.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="NLog, Version=5.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\NLog.5.3.2\lib\net46\NLog.dll</HintPath>
|
||||
</Reference>
|
||||
|
||||
@@ -22,6 +22,8 @@ namespace DOCGEN.Generator
|
||||
public string DokumentID;
|
||||
public string tempdir;
|
||||
private static readonly NLog.Logger Logger = NLog.LogManager.GetCurrentClassLogger();
|
||||
public string apikey = "";
|
||||
public string resturi = "";
|
||||
|
||||
public void Lic()
|
||||
{
|
||||
@@ -36,11 +38,20 @@ namespace DOCGEN.Generator
|
||||
this.connectionstring = connectionstring;
|
||||
Lic();
|
||||
}
|
||||
public DocGenerator_from_EDOKA(string connectionstring, string RestUri, string ApiKey)
|
||||
{
|
||||
this.connectionstring = connectionstring;
|
||||
Lic();
|
||||
this.apikey= ApiKey;
|
||||
this.resturi= RestUri;
|
||||
}
|
||||
|
||||
public DocGenerator_from_EDOKA(string connectionstring, string tempdir)
|
||||
public DocGenerator_from_EDOKA(string connectionstring, string tempdir, string RestUri, string ApiKey)
|
||||
{
|
||||
this.connectionstring = connectionstring;
|
||||
this.tempdir = tempdir;
|
||||
this.resturi = RestUri;
|
||||
this.apikey = ApiKey;
|
||||
}
|
||||
|
||||
public clsdok Generate_Doc_EDOKA(string dokumentid, ref clsDocData docdata, bool useoffice = false )
|
||||
@@ -57,7 +68,7 @@ namespace DOCGEN.Generator
|
||||
{
|
||||
case "DOCX": case "DOCM": case "DOC": case "DOT":
|
||||
case "WORD": case "DOTM":
|
||||
SyncFWord sfword = new SyncFWord();
|
||||
SyncFWord sfword = new SyncFWord(resturi,apikey);
|
||||
generate_docdata(dokumentid, ref docdata);
|
||||
clsdok dok = new clsdok("", "", "");
|
||||
if (useoffice == false) {
|
||||
|
||||
@@ -30,6 +30,8 @@ using Syncfusion.XlsIO.Implementation.TemplateMarkers;
|
||||
using System.Drawing.Printing;
|
||||
using Syncfusion.XlsIO;
|
||||
using System.Security.Permissions;
|
||||
using System.Net;
|
||||
using System.Runtime.CompilerServices;
|
||||
|
||||
|
||||
|
||||
@@ -37,6 +39,15 @@ namespace DOCGEN.Klassen
|
||||
{
|
||||
public class SyncFWord
|
||||
{
|
||||
public string resturi = "";
|
||||
public string apikey = "";
|
||||
|
||||
public SyncFWord(string resturi, string apikey)
|
||||
{
|
||||
this.resturi = resturi;
|
||||
this.apikey=apikey;
|
||||
}
|
||||
|
||||
public bool create_nativ(string property, string value, string base64, string originalfile, string destfile)
|
||||
{
|
||||
FileStream ms = new FileStream(originalfile, FileMode.Open, FileAccess.Read);
|
||||
@@ -66,16 +77,79 @@ namespace DOCGEN.Klassen
|
||||
return true;
|
||||
|
||||
}
|
||||
|
||||
private string get_unterschrift(string MaNr)
|
||||
{
|
||||
|
||||
string URL = resturi + "API/GetUnterschriftAsBase64ByMitarbeiternr?MaNr=" + MaNr;
|
||||
|
||||
HttpWebRequest webRequest = HttpWebRequest.Create(URL) as HttpWebRequest;
|
||||
webRequest.Method = WebRequestMethods.Http.Get;
|
||||
webRequest.Headers["Authorization"] = "Bearer " + apikey;
|
||||
try
|
||||
{
|
||||
using (HttpWebResponse response = webRequest.GetResponse() as HttpWebResponse)
|
||||
{
|
||||
if (response.StatusCode == HttpStatusCode.OK)
|
||||
{
|
||||
StreamReader reader = new StreamReader(response.GetResponseStream());
|
||||
string responseContent = reader.ReadToEnd();
|
||||
|
||||
return responseContent;
|
||||
}
|
||||
else
|
||||
{
|
||||
Logging.Logging.Error(URL + ": " + response.StatusCode.ToString() + " / " + response.StatusDescription, "Clinet - DokList GetDocument", "");
|
||||
return "";
|
||||
}
|
||||
}
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
return "";
|
||||
}
|
||||
}
|
||||
|
||||
//private Image resizeImage(Image imgToResize, Size size)
|
||||
//{
|
||||
// return (Image)new Bitmap(imgToResize, size);
|
||||
|
||||
//}
|
||||
public string Generate_Word(string base64, clsDocData docdata)
|
||||
{
|
||||
string formattype = "";
|
||||
MemoryStream ms = new MemoryStream(Helper.EncodeExtensions.DecodeBase642ByteArray(base64));
|
||||
WordDocument document = new WordDocument(ms, FormatType.Automatic);
|
||||
CompatibilityMode compatibilityMode = document.Settings.CompatibilityMode;
|
||||
switch (compatibilityMode)
|
||||
{
|
||||
case CompatibilityMode.Word2010:
|
||||
document.Settings.CompatibilityMode = CompatibilityMode.Word2010;
|
||||
break;
|
||||
case CompatibilityMode.Word2013:
|
||||
|
||||
break;
|
||||
default:
|
||||
document.Settings.CompatibilityMode = CompatibilityMode.Word2010;
|
||||
break;
|
||||
}
|
||||
if (compatibilityMode == CompatibilityMode.Word2010) { document.Settings.CompatibilityMode = CompatibilityMode.Word2010; }
|
||||
if (compatibilityMode > CompatibilityMode.Word2010) { document.Settings.CompatibilityMode = CompatibilityMode.Word2010; }
|
||||
formattype = document.ActualFormatType.ToString();
|
||||
var formattype_original = document.ActualFormatType;
|
||||
|
||||
foreach (clsDocValue dv in docdata.DocValues)
|
||||
{
|
||||
if (docdata.Form_ohne_Unterschrift == "True")
|
||||
{
|
||||
foreach (clsDocValue dv2 in docdata.DocValues)
|
||||
{
|
||||
if (dv2.TMBeginn.ToString() == "TGEDKVornameNameLinksB99") { dv2.Value = "(Gültig ohne Unterschrift)"; }
|
||||
if (dv2.TMBeginn.ToString() == "TGEDKVornameNameRechtsB99") { dv2.Value = ""; }
|
||||
if (dv2.TMBeginn.ToString() == "TGEDKFunktionLinksB99") { dv2.Value = ""; }
|
||||
if (dv2.TMBeginn.ToString() == "TGEDKFunktionRechtsB99") { dv2.Value = ""; }
|
||||
}
|
||||
}
|
||||
if (dv.TMBeginn.ToString() != "" && dv.TMEnd.ToString() == "")
|
||||
{
|
||||
try
|
||||
@@ -83,21 +157,76 @@ namespace DOCGEN.Klassen
|
||||
BookmarksNavigator bookmarkNavigator = new BookmarksNavigator(document);
|
||||
if ((dv.TMBeginn.ToString() == "TGEDKVornameNameLinksB99" || dv.TMBeginn.ToString() == "TGEDKVornameNameRechtsB99") && docdata.As_Faksimile == "True")
|
||||
{
|
||||
string funktionlinks = "";
|
||||
string funktionrechts = "";
|
||||
foreach (clsDocValue dv2 in docdata.DocValues)
|
||||
{
|
||||
if (dv2.TMBeginn.ToString()== "TGEDKFunktionLinksB99") { funktionlinks = dv2.Value.ToString(); }
|
||||
if (dv2.TMBeginn.ToString() == "TGEDKFunktionRechtsB99") { funktionrechts = dv2.Value.ToString(); }
|
||||
}
|
||||
bookmarkNavigator.MoveToBookmark(dv.TMBeginn.ToString());
|
||||
IWParagraph paragraph = new WParagraph(document);
|
||||
paragraph.AppendBreak(BreakType.LineBreak);
|
||||
System.Drawing.Image image = System.Drawing.Image.FromFile(@"x:\docdemo\unterschriften\kube1.png");
|
||||
paragraph.AppendPicture(image);
|
||||
|
||||
if (dv.TMBeginn.ToString() == "TGEDKVornameNameLinksB99")
|
||||
{
|
||||
string unterschrift = get_unterschrift(docdata.Unterschrift_Links);
|
||||
if (unterschrift != "")
|
||||
{
|
||||
string ss = Newtonsoft.Json.JsonConvert.DeserializeObject<string>(unterschrift);
|
||||
|
||||
MemoryStream mssign = new MemoryStream(Convert.FromBase64String(ss));
|
||||
System.Drawing.Image img = System.Drawing.Image.FromStream(mssign);
|
||||
paragraph.AppendPicture(img);
|
||||
mssign.Dispose();
|
||||
img.Dispose();
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
string unterschrift = get_unterschrift(docdata.Unterschrift_Rechts);
|
||||
if (unterschrift != "")
|
||||
{
|
||||
string ss = Newtonsoft.Json.JsonConvert.DeserializeObject<string>(unterschrift);
|
||||
MemoryStream mssign = new MemoryStream(Helper.EncodeExtensions.DecodeBase642ByteArray(ss));
|
||||
System.Drawing.Image img = System.Drawing.Image.FromStream(mssign);
|
||||
mssign.Dispose();
|
||||
paragraph.AppendPicture(img);
|
||||
img.Dispose();
|
||||
}
|
||||
}
|
||||
// System.Drawing.Image image = System.Drawing.Image.FromFile(@"x:\docdemo\unterschriften\kube1.png");
|
||||
//paragraph.AppendPicture(image);
|
||||
paragraph.AppendBreak(BreakType.LineBreak);
|
||||
paragraph.AppendText(dv.Value.ToString());
|
||||
bookmarkNavigator.InsertParagraph(paragraph);
|
||||
if (dv.TMBeginn.ToString() == "TGEDKVornameNameLinksB99")
|
||||
{
|
||||
paragraph.AppendBreak(BreakType.LineBreak);
|
||||
paragraph.AppendText(funktionlinks);
|
||||
|
||||
}
|
||||
else
|
||||
{
|
||||
paragraph.AppendBreak(BreakType.LineBreak);
|
||||
paragraph.AppendText(funktionrechts);
|
||||
|
||||
}
|
||||
//paragraph.rep
|
||||
bookmarkNavigator.InsertParagraph(paragraph);
|
||||
|
||||
}
|
||||
else
|
||||
{
|
||||
bookmarkNavigator.MoveToBookmark(dv.TMBeginn.ToString());
|
||||
bookmarkNavigator.InsertText(dv.Value.ToString());
|
||||
if (docdata.As_Faksimile=="True" && (dv.TMBeginn.ToString() == "TGEDKFunktionLinksB99" || dv.TMBeginn.ToString() == "TGEDKFunktionRechtsB99"))
|
||||
{
|
||||
|
||||
}
|
||||
else
|
||||
{
|
||||
bookmarkNavigator.MoveToBookmark(dv.TMBeginn.ToString());
|
||||
bookmarkNavigator.InsertText(dv.Value.ToString());
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
catch { }
|
||||
|
||||
60
DOCGEN/VSdoc/Solution+.hhc
Normal file
60
DOCGEN/VSdoc/Solution+.hhc
Normal file
@@ -0,0 +1,60 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<meta name="GENERATOR" content="VSdocman - documentation generator; https://www.helixoft.com">
|
||||
<link rel="icon" href="favicon.ico">
|
||||
<title>OnDoc</title>
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="vsdocman_overrides.css">
|
||||
</head>
|
||||
<BODY>
|
||||
<H1>
|
||||
OnDoc
|
||||
</H1>
|
||||
|
||||
<p>
|
||||
<a href="API_NetFramework/index.html">API_NetFramework</a>
|
||||
<p>
|
||||
<a href="BarcodeLib/index.html">BarcodeLib</a>
|
||||
<p>
|
||||
<a href="CSVNET/index.html">CSVNET</a>
|
||||
<p>
|
||||
<a href="Client/index.html">Client</a>
|
||||
<p>
|
||||
<a href="Database/index.html">Database</a>
|
||||
<p>
|
||||
<a href="DocGen/index.html">DocGen</a>
|
||||
<p>
|
||||
<a href="DocIO_Demo_SHU/index.html">DocIO_Demo_SHU</a>
|
||||
<p>
|
||||
<a href="ExcelNet/index.html">ExcelNet</a>
|
||||
<p>
|
||||
<a href="Excel_Test/index.html">Excel_Test</a>
|
||||
<p>
|
||||
<a href="Helper/index.html">Helper</a>
|
||||
<p>
|
||||
<a href="ILMocup/index.html">ILMocup</a>
|
||||
<p>
|
||||
<a href="Logging/index.html">Logging</a>
|
||||
<p>
|
||||
<a href="Model/index.html">Model</a>
|
||||
<p>
|
||||
<a href="NativVorlagen/index.html">NativVorlagen</a>
|
||||
<p>
|
||||
<a href="OfficePrinter/index.html">OfficePrinter</a>
|
||||
<p>
|
||||
<a href="OnDocMessage/index.html">OnDocMessage</a>
|
||||
<p>
|
||||
<a href="OnDocOffice/index.html">OnDocOffice</a>
|
||||
<p>
|
||||
<a href="OnDocWPF/index.html">OnDocWPF</a>
|
||||
<p>
|
||||
<a href="OnDocWeb/index.html">OnDocWeb</a>
|
||||
<p>
|
||||
<a href="Tools_StringCipher/index.html">Tools_StringCipher</a>
|
||||
<p>
|
||||
<a href="VBFileManagement/index.html">VBFileManagement</a>
|
||||
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
||||
0
DOCGEN/VSdoc/Solution+.hhp
Normal file
0
DOCGEN/VSdoc/Solution+.hhp
Normal file
@@ -2,13 +2,13 @@
|
||||
<head>
|
||||
<link rel="icon" href="favicon.ico">
|
||||
<title>Default page</title>
|
||||
<META http-equiv="refresh" content="0;URL=topic_0000000000000033.html">
|
||||
<META http-equiv="refresh" content="0;URL=topic_000000000000004A.html">
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="vsdocman_overrides.css">
|
||||
</head>
|
||||
<body style="direction: ltr;">
|
||||
<center>
|
||||
<a href="topic_0000000000000033.html">Go to default page</a>
|
||||
<a href="topic_000000000000004A.html">Go to default page</a>
|
||||
</center>
|
||||
</body>
|
||||
</html>
|
||||
@@ -1 +1 @@
|
||||
search_result['100']=["topic_0000000000000031_methods--.html","print Methods",""];
|
||||
search_result['100']=["topic_0000000000000026.html","DocGenerator_from_EDOKA(String, String, String) Constructor",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['101']=["topic_0000000000000031_props--.html","print Properties",""];
|
||||
search_result['101']=["topic_0000000000000026_overloads--.html","DocGenerator_from_EDOKA Constructor",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['102']=["topic_0000000000000031_vars--.html","print Fields",""];
|
||||
search_result['102']=["topic_0000000000000027.html","DocGenerator_from_EDOKA(String, String, String, String) Constructor",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['103']=["topic_0000000000000032.html","print.printWord Method",""];
|
||||
search_result['103']=["topic_0000000000000027_overloads--.html","DocGenerator_from_EDOKA Constructor",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['104']=["topic_0000000000000033.html","DocGen Reference ",""];
|
||||
search_result['104']=["topic_0000000000000028.html","DocGenerator_from_EDOKA.Generate_Doc_EDOKA Method",""];
|
||||
1
DOCGEN/VSdoc/search--/s_105.js
Normal file
1
DOCGEN/VSdoc/search--/s_105.js
Normal file
@@ -0,0 +1 @@
|
||||
search_result['105']=["topic_0000000000000029.html","DocGenerator_from_EDOKA.generate_docdata Method",""];
|
||||
1
DOCGEN/VSdoc/search--/s_106.js
Normal file
1
DOCGEN/VSdoc/search--/s_106.js
Normal file
@@ -0,0 +1 @@
|
||||
search_result['106']=["topic_000000000000002A.html","DOCGEN.Klassen Namespace",""];
|
||||
1
DOCGEN/VSdoc/search--/s_107.js
Normal file
1
DOCGEN/VSdoc/search--/s_107.js
Normal file
@@ -0,0 +1 @@
|
||||
search_result['107']=["topic_000000000000002B.html","Excel_Reader Class",""];
|
||||
1
DOCGEN/VSdoc/search--/s_108.js
Normal file
1
DOCGEN/VSdoc/search--/s_108.js
Normal file
@@ -0,0 +1 @@
|
||||
search_result['108']=["topic_000000000000002B_attached_props--.html","Excel_Reader Attached Properties",""];
|
||||
1
DOCGEN/VSdoc/search--/s_109.js
Normal file
1
DOCGEN/VSdoc/search--/s_109.js
Normal file
@@ -0,0 +1 @@
|
||||
search_result['109']=["topic_000000000000002B_events--.html","Excel_Reader Events",""];
|
||||
1
DOCGEN/VSdoc/search--/s_110.js
Normal file
1
DOCGEN/VSdoc/search--/s_110.js
Normal file
@@ -0,0 +1 @@
|
||||
search_result['110']=["topic_000000000000002B_methods--.html","Excel_Reader Methods",""];
|
||||
1
DOCGEN/VSdoc/search--/s_111.js
Normal file
1
DOCGEN/VSdoc/search--/s_111.js
Normal file
@@ -0,0 +1 @@
|
||||
search_result['111']=["topic_000000000000002B_props--.html","Excel_Reader Properties",""];
|
||||
1
DOCGEN/VSdoc/search--/s_112.js
Normal file
1
DOCGEN/VSdoc/search--/s_112.js
Normal file
@@ -0,0 +1 @@
|
||||
search_result['112']=["topic_000000000000002B_vars--.html","Excel_Reader Fields",""];
|
||||
1
DOCGEN/VSdoc/search--/s_113.js
Normal file
1
DOCGEN/VSdoc/search--/s_113.js
Normal file
@@ -0,0 +1 @@
|
||||
search_result['113']=["topic_000000000000002C.html","Excel_Reader.get_valus_from_excel Method",""];
|
||||
1
DOCGEN/VSdoc/search--/s_114.js
Normal file
1
DOCGEN/VSdoc/search--/s_114.js
Normal file
@@ -0,0 +1 @@
|
||||
search_result['114']=["topic_000000000000002D.html","SyncFExcel Class",""];
|
||||
1
DOCGEN/VSdoc/search--/s_115.js
Normal file
1
DOCGEN/VSdoc/search--/s_115.js
Normal file
@@ -0,0 +1 @@
|
||||
search_result['115']=["topic_000000000000002D_attached_props--.html","SyncFExcel Attached Properties",""];
|
||||
1
DOCGEN/VSdoc/search--/s_116.js
Normal file
1
DOCGEN/VSdoc/search--/s_116.js
Normal file
@@ -0,0 +1 @@
|
||||
search_result['116']=["topic_000000000000002D_events--.html","SyncFExcel Events",""];
|
||||
1
DOCGEN/VSdoc/search--/s_117.js
Normal file
1
DOCGEN/VSdoc/search--/s_117.js
Normal file
@@ -0,0 +1 @@
|
||||
search_result['117']=["topic_000000000000002D_methods--.html","SyncFExcel Methods",""];
|
||||
1
DOCGEN/VSdoc/search--/s_118.js
Normal file
1
DOCGEN/VSdoc/search--/s_118.js
Normal file
@@ -0,0 +1 @@
|
||||
search_result['118']=["topic_000000000000002D_props--.html","SyncFExcel Properties",""];
|
||||
1
DOCGEN/VSdoc/search--/s_119.js
Normal file
1
DOCGEN/VSdoc/search--/s_119.js
Normal file
@@ -0,0 +1 @@
|
||||
search_result['119']=["topic_000000000000002D_vars--.html","SyncFExcel Fields",""];
|
||||
1
DOCGEN/VSdoc/search--/s_120.js
Normal file
1
DOCGEN/VSdoc/search--/s_120.js
Normal file
@@ -0,0 +1 @@
|
||||
search_result['120']=["topic_000000000000002E.html","SyncFExcel.create_nativ Method",""];
|
||||
1
DOCGEN/VSdoc/search--/s_121.js
Normal file
1
DOCGEN/VSdoc/search--/s_121.js
Normal file
@@ -0,0 +1 @@
|
||||
search_result['121']=["topic_000000000000002F.html","SyncFExcel.Generate_Excel Method",""];
|
||||
1
DOCGEN/VSdoc/search--/s_122.js
Normal file
1
DOCGEN/VSdoc/search--/s_122.js
Normal file
@@ -0,0 +1 @@
|
||||
search_result['122']=["topic_0000000000000030.html","SyncFExcel.get_values Method",""];
|
||||
1
DOCGEN/VSdoc/search--/s_123.js
Normal file
1
DOCGEN/VSdoc/search--/s_123.js
Normal file
@@ -0,0 +1 @@
|
||||
search_result['123']=["topic_0000000000000031.html","SyncFPDF Class",""];
|
||||
1
DOCGEN/VSdoc/search--/s_124.js
Normal file
1
DOCGEN/VSdoc/search--/s_124.js
Normal file
@@ -0,0 +1 @@
|
||||
search_result['124']=["topic_0000000000000031_attached_props--.html","SyncFPDF Attached Properties",""];
|
||||
1
DOCGEN/VSdoc/search--/s_125.js
Normal file
1
DOCGEN/VSdoc/search--/s_125.js
Normal file
@@ -0,0 +1 @@
|
||||
search_result['125']=["topic_0000000000000031_events--.html","SyncFPDF Events",""];
|
||||
1
DOCGEN/VSdoc/search--/s_126.js
Normal file
1
DOCGEN/VSdoc/search--/s_126.js
Normal file
@@ -0,0 +1 @@
|
||||
search_result['126']=["topic_0000000000000031_methods--.html","SyncFPDF Methods",""];
|
||||
1
DOCGEN/VSdoc/search--/s_127.js
Normal file
1
DOCGEN/VSdoc/search--/s_127.js
Normal file
@@ -0,0 +1 @@
|
||||
search_result['127']=["topic_0000000000000031_props--.html","SyncFPDF Properties",""];
|
||||
1
DOCGEN/VSdoc/search--/s_128.js
Normal file
1
DOCGEN/VSdoc/search--/s_128.js
Normal file
@@ -0,0 +1 @@
|
||||
search_result['128']=["topic_0000000000000031_vars--.html","SyncFPDF Fields",""];
|
||||
1
DOCGEN/VSdoc/search--/s_129.js
Normal file
1
DOCGEN/VSdoc/search--/s_129.js
Normal file
@@ -0,0 +1 @@
|
||||
search_result['129']=["topic_0000000000000032.html","SyncFPowerPoint Class",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['13']=["topic_0000000000000006.html","DocGen.Lic Method",""];
|
||||
search_result['13']=["topic_0000000000000006.html","apikey Field",""];
|
||||
1
DOCGEN/VSdoc/search--/s_130.js
Normal file
1
DOCGEN/VSdoc/search--/s_130.js
Normal file
@@ -0,0 +1 @@
|
||||
search_result['130']=["topic_0000000000000032_attached_props--.html","SyncFPowerPoint Attached Properties",""];
|
||||
1
DOCGEN/VSdoc/search--/s_131.js
Normal file
1
DOCGEN/VSdoc/search--/s_131.js
Normal file
@@ -0,0 +1 @@
|
||||
search_result['131']=["topic_0000000000000032_events--.html","SyncFPowerPoint Events",""];
|
||||
1
DOCGEN/VSdoc/search--/s_132.js
Normal file
1
DOCGEN/VSdoc/search--/s_132.js
Normal file
@@ -0,0 +1 @@
|
||||
search_result['132']=["topic_0000000000000032_methods--.html","SyncFPowerPoint Methods",""];
|
||||
1
DOCGEN/VSdoc/search--/s_133.js
Normal file
1
DOCGEN/VSdoc/search--/s_133.js
Normal file
@@ -0,0 +1 @@
|
||||
search_result['133']=["topic_0000000000000032_props--.html","SyncFPowerPoint Properties",""];
|
||||
1
DOCGEN/VSdoc/search--/s_134.js
Normal file
1
DOCGEN/VSdoc/search--/s_134.js
Normal file
@@ -0,0 +1 @@
|
||||
search_result['134']=["topic_0000000000000032_vars--.html","SyncFPowerPoint Fields",""];
|
||||
1
DOCGEN/VSdoc/search--/s_135.js
Normal file
1
DOCGEN/VSdoc/search--/s_135.js
Normal file
@@ -0,0 +1 @@
|
||||
search_result['135']=["topic_0000000000000033.html","SyncFPowerPoint.create_nativ Method",""];
|
||||
1
DOCGEN/VSdoc/search--/s_136.js
Normal file
1
DOCGEN/VSdoc/search--/s_136.js
Normal file
@@ -0,0 +1 @@
|
||||
search_result['136']=["topic_0000000000000034.html","SyncFWord Class",""];
|
||||
1
DOCGEN/VSdoc/search--/s_137.js
Normal file
1
DOCGEN/VSdoc/search--/s_137.js
Normal file
@@ -0,0 +1 @@
|
||||
search_result['137']=["topic_0000000000000034_attached_props--.html","SyncFWord Attached Properties",""];
|
||||
1
DOCGEN/VSdoc/search--/s_138.js
Normal file
1
DOCGEN/VSdoc/search--/s_138.js
Normal file
@@ -0,0 +1 @@
|
||||
search_result['138']=["topic_0000000000000034_events--.html","SyncFWord Events",""];
|
||||
1
DOCGEN/VSdoc/search--/s_139.js
Normal file
1
DOCGEN/VSdoc/search--/s_139.js
Normal file
@@ -0,0 +1 @@
|
||||
search_result['139']=["topic_0000000000000034_methods--.html","SyncFWord Methods",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['14']=["topic_0000000000000007.html","DocGen Constructor",""];
|
||||
search_result['14']=["topic_0000000000000007.html","resturi Field",""];
|
||||
1
DOCGEN/VSdoc/search--/s_140.js
Normal file
1
DOCGEN/VSdoc/search--/s_140.js
Normal file
@@ -0,0 +1 @@
|
||||
search_result['140']=["topic_0000000000000034_props--.html","SyncFWord Properties",""];
|
||||
1
DOCGEN/VSdoc/search--/s_141.js
Normal file
1
DOCGEN/VSdoc/search--/s_141.js
Normal file
@@ -0,0 +1 @@
|
||||
search_result['141']=["topic_0000000000000034_vars--.html","SyncFWord Fields",""];
|
||||
1
DOCGEN/VSdoc/search--/s_142.js
Normal file
1
DOCGEN/VSdoc/search--/s_142.js
Normal file
@@ -0,0 +1 @@
|
||||
search_result['142']=["topic_0000000000000035.html","resturi Field",""];
|
||||
1
DOCGEN/VSdoc/search--/s_143.js
Normal file
1
DOCGEN/VSdoc/search--/s_143.js
Normal file
@@ -0,0 +1 @@
|
||||
search_result['143']=["topic_0000000000000036.html","apikey Field",""];
|
||||
1
DOCGEN/VSdoc/search--/s_144.js
Normal file
1
DOCGEN/VSdoc/search--/s_144.js
Normal file
@@ -0,0 +1 @@
|
||||
search_result['144']=["topic_0000000000000037.html","SyncFWord Constructor",""];
|
||||
1
DOCGEN/VSdoc/search--/s_145.js
Normal file
1
DOCGEN/VSdoc/search--/s_145.js
Normal file
@@ -0,0 +1 @@
|
||||
search_result['145']=["topic_0000000000000038.html","SyncFWord.create_nativ Method",""];
|
||||
1
DOCGEN/VSdoc/search--/s_146.js
Normal file
1
DOCGEN/VSdoc/search--/s_146.js
Normal file
@@ -0,0 +1 @@
|
||||
search_result['146']=["topic_0000000000000039.html","SyncFWord.Generate_Word Method",""];
|
||||
1
DOCGEN/VSdoc/search--/s_147.js
Normal file
1
DOCGEN/VSdoc/search--/s_147.js
Normal file
@@ -0,0 +1 @@
|
||||
search_result['147']=["topic_000000000000003A.html","SyncFWord.ReplaceBookmarkText Method",""];
|
||||
1
DOCGEN/VSdoc/search--/s_148.js
Normal file
1
DOCGEN/VSdoc/search--/s_148.js
Normal file
@@ -0,0 +1 @@
|
||||
search_result['148']=["topic_000000000000003B.html","SyncFWord.IterateTextBody Method",""];
|
||||
1
DOCGEN/VSdoc/search--/s_149.js
Normal file
1
DOCGEN/VSdoc/search--/s_149.js
Normal file
@@ -0,0 +1 @@
|
||||
search_result['149']=["topic_000000000000003C.html","SyncFWord.ReplaceBookmarkContent Method",""];
|
||||
1
DOCGEN/VSdoc/search--/s_150.js
Normal file
1
DOCGEN/VSdoc/search--/s_150.js
Normal file
@@ -0,0 +1 @@
|
||||
search_result['150']=["topic_000000000000003D.html","SyncFWord.resizeImage Method",""];
|
||||
1
DOCGEN/VSdoc/search--/s_151.js
Normal file
1
DOCGEN/VSdoc/search--/s_151.js
Normal file
@@ -0,0 +1 @@
|
||||
search_result['151']=["topic_000000000000003E.html","SyncFWord.Insert_Barcode Method",""];
|
||||
1
DOCGEN/VSdoc/search--/s_152.js
Normal file
1
DOCGEN/VSdoc/search--/s_152.js
Normal file
@@ -0,0 +1 @@
|
||||
search_result['152']=["topic_000000000000003F.html","SyncFWord.insert_Logo Method",""];
|
||||
1
DOCGEN/VSdoc/search--/s_153.js
Normal file
1
DOCGEN/VSdoc/search--/s_153.js
Normal file
@@ -0,0 +1 @@
|
||||
search_result['153']=["topic_0000000000000040.html","SyncFWord.DocToPDF Method","Word to PDF-Konverter"];
|
||||
1
DOCGEN/VSdoc/search--/s_154.js
Normal file
1
DOCGEN/VSdoc/search--/s_154.js
Normal file
@@ -0,0 +1 @@
|
||||
search_result['154']=["topic_0000000000000041.html","SyncFWord.GetPageNumber Method",""];
|
||||
1
DOCGEN/VSdoc/search--/s_155.js
Normal file
1
DOCGEN/VSdoc/search--/s_155.js
Normal file
@@ -0,0 +1 @@
|
||||
search_result['155']=["topic_0000000000000042.html","SyncFWord.Print_Word Method",""];
|
||||
1
DOCGEN/VSdoc/search--/s_156.js
Normal file
1
DOCGEN/VSdoc/search--/s_156.js
Normal file
@@ -0,0 +1 @@
|
||||
search_result['156']=["topic_0000000000000043.html","SyncFWord.SplitDocument Method",""];
|
||||
1
DOCGEN/VSdoc/search--/s_157.js
Normal file
1
DOCGEN/VSdoc/search--/s_157.js
Normal file
@@ -0,0 +1 @@
|
||||
search_result['157']=["topic_0000000000000044.html","SyncFWord.SplitDocument_Part2 Method",""];
|
||||
1
DOCGEN/VSdoc/search--/s_158.js
Normal file
1
DOCGEN/VSdoc/search--/s_158.js
Normal file
@@ -0,0 +1 @@
|
||||
search_result['158']=["topic_0000000000000045.html","SyncFWord.Replace_Text Method",""];
|
||||
1
DOCGEN/VSdoc/search--/s_159.js
Normal file
1
DOCGEN/VSdoc/search--/s_159.js
Normal file
@@ -0,0 +1 @@
|
||||
search_result['159']=["topic_0000000000000046.html","SyncFWord.Replace_Fieldtext Method",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['16']=["topic_0000000000000008.html","DocGen(String) Constructor",""];
|
||||
search_result['16']=["topic_0000000000000008.html","DocGen.Lic Method",""];
|
||||
1
DOCGEN/VSdoc/search--/s_160.js
Normal file
1
DOCGEN/VSdoc/search--/s_160.js
Normal file
@@ -0,0 +1 @@
|
||||
search_result['160']=["topic_0000000000000047.html","SyncFWord.FindText Method",""];
|
||||
1
DOCGEN/VSdoc/search--/s_161.js
Normal file
1
DOCGEN/VSdoc/search--/s_161.js
Normal file
@@ -0,0 +1 @@
|
||||
search_result['161']=["topic_0000000000000048.html","print Class",""];
|
||||
1
DOCGEN/VSdoc/search--/s_162.js
Normal file
1
DOCGEN/VSdoc/search--/s_162.js
Normal file
@@ -0,0 +1 @@
|
||||
search_result['162']=["topic_0000000000000048_attached_props--.html","print Attached Properties",""];
|
||||
1
DOCGEN/VSdoc/search--/s_163.js
Normal file
1
DOCGEN/VSdoc/search--/s_163.js
Normal file
@@ -0,0 +1 @@
|
||||
search_result['163']=["topic_0000000000000048_events--.html","print Events",""];
|
||||
1
DOCGEN/VSdoc/search--/s_164.js
Normal file
1
DOCGEN/VSdoc/search--/s_164.js
Normal file
@@ -0,0 +1 @@
|
||||
search_result['164']=["topic_0000000000000048_methods--.html","print Methods",""];
|
||||
1
DOCGEN/VSdoc/search--/s_165.js
Normal file
1
DOCGEN/VSdoc/search--/s_165.js
Normal file
@@ -0,0 +1 @@
|
||||
search_result['165']=["topic_0000000000000048_props--.html","print Properties",""];
|
||||
1
DOCGEN/VSdoc/search--/s_166.js
Normal file
1
DOCGEN/VSdoc/search--/s_166.js
Normal file
@@ -0,0 +1 @@
|
||||
search_result['166']=["topic_0000000000000048_vars--.html","print Fields",""];
|
||||
1
DOCGEN/VSdoc/search--/s_167.js
Normal file
1
DOCGEN/VSdoc/search--/s_167.js
Normal file
@@ -0,0 +1 @@
|
||||
search_result['167']=["topic_0000000000000049.html","print.printWord Method",""];
|
||||
1
DOCGEN/VSdoc/search--/s_168.js
Normal file
1
DOCGEN/VSdoc/search--/s_168.js
Normal file
@@ -0,0 +1 @@
|
||||
search_result['168']=["topic_000000000000004A.html","DocGen Reference ",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['18']=["topic_0000000000000009.html","DocGen.GenDocID Method",""];
|
||||
search_result['18']=["topic_0000000000000009.html","DocGen Constructor",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['19']=["topic_000000000000000A.html","DocGen.Barcodetest Method",""];
|
||||
search_result['19']=["topic_0000000000000009_overloads--.html","DocGen Constructor",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['20']=["topic_000000000000000B.html","DocGen.generate_pdf Method",""];
|
||||
search_result['20']=["topic_000000000000000A.html","DocGen(String) Constructor",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['21']=["topic_000000000000000C.html","DocGet Class",""];
|
||||
search_result['21']=["topic_000000000000000A_overloads--.html","DocGen Constructor",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['22']=["topic_000000000000000C_attached_props--.html","DocGet Attached Properties",""];
|
||||
search_result['22']=["topic_000000000000000B.html","DocGen(String, String, String) Constructor",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['23']=["topic_000000000000000C_events--.html","DocGet Events",""];
|
||||
search_result['23']=["topic_000000000000000B_overloads--.html","DocGen Constructor",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['24']=["topic_000000000000000C_methods--.html","DocGet Methods",""];
|
||||
search_result['24']=["topic_000000000000000C.html","DocGen.GenDocID Method",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['25']=["topic_000000000000000C_props--.html","DocGet Properties",""];
|
||||
search_result['25']=["topic_000000000000000C_attached_props--.html","DocGet Attached Properties",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['26']=["topic_000000000000000C_vars--.html","DocGet Fields",""];
|
||||
search_result['26']=["topic_000000000000000C_events--.html","DocGet Events",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['27']=["topic_000000000000000D.html","DocGet Constructor",""];
|
||||
search_result['27']=["topic_000000000000000C_methods--.html","DocGet Methods",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['28']=["topic_000000000000000E.html","DocGet.Lic Method",""];
|
||||
search_result['28']=["topic_000000000000000C_props--.html","DocGet Properties",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['29']=["topic_000000000000000F.html","DocGet.test_filetype Method",""];
|
||||
search_result['29']=["topic_000000000000000C_vars--.html","DocGet Fields",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['30']=["topic_0000000000000010.html","DocGet.Get_FileType Method",""];
|
||||
search_result['30']=["topic_000000000000000D.html","DocGen.Barcodetest Method",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['31']=["topic_0000000000000011.html","DocGet.GetDocAsFinalPDF Method",""];
|
||||
search_result['31']=["topic_000000000000000E.html","DocGen.generate_pdf Method",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['32']=["topic_0000000000000012.html","DocGet.GetDocAsPDF Method",""];
|
||||
search_result['32']=["topic_000000000000000F.html","DocGen.generate_serienbrief Method",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['33']=["topic_0000000000000013.html","DocGet.GetDoc Method",""];
|
||||
search_result['33']=["topic_0000000000000010.html","DocGet Class",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['34']=["topic_0000000000000014.html","DocGet.ConvertFileToBase64 Method",""];
|
||||
search_result['34']=["topic_0000000000000010_attached_props--.html","DocGet Attached Properties",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['35']=["topic_0000000000000015.html","DocGet.Convert_Word_To_PDF Method",""];
|
||||
search_result['35']=["topic_0000000000000010_events--.html","DocGet Events",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['36']=["topic_0000000000000016.html","DocGet.Convert_Excel_To_PDF Method",""];
|
||||
search_result['36']=["topic_0000000000000010_methods--.html","DocGet Methods",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['37']=["topic_0000000000000017.html","DocGet.Print_Doc Method",""];
|
||||
search_result['37']=["topic_0000000000000010_props--.html","DocGet Properties",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['38']=["topic_0000000000000017_attached_props--.html","DocGenerator_from_EDOKA Attached Properties",""];
|
||||
search_result['38']=["topic_0000000000000010_vars--.html","DocGet Fields",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['39']=["topic_0000000000000017_events--.html","DocGenerator_from_EDOKA Events",""];
|
||||
search_result['39']=["topic_0000000000000011.html","DocGet Constructor",""];
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user