update 20241127

This commit is contained in:
Stefan Hutter
2024-11-27 15:53:34 +01:00
parent 341ea50f06
commit 2a652c7325
11218 changed files with 1987907 additions and 362275 deletions

View File

@@ -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>

View File

@@ -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) {

View File

@@ -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 { }

View 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>

View File

View 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>

View File

@@ -1 +1 @@
search_result['100']=["topic_0000000000000031_methods--.html","print Methods",""];
search_result['100']=["topic_0000000000000026.html","DocGenerator_from_EDOKA(String, String, String) Constructor",""];

View File

@@ -1 +1 @@
search_result['101']=["topic_0000000000000031_props--.html","print Properties",""];
search_result['101']=["topic_0000000000000026_overloads--.html","DocGenerator_from_EDOKA Constructor",""];

View File

@@ -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",""];

View File

@@ -1 +1 @@
search_result['103']=["topic_0000000000000032.html","print.printWord Method",""];
search_result['103']=["topic_0000000000000027_overloads--.html","DocGenerator_from_EDOKA Constructor",""];

View File

@@ -1 +1 @@
search_result['104']=["topic_0000000000000033.html","DocGen Reference ",""];
search_result['104']=["topic_0000000000000028.html","DocGenerator_from_EDOKA.Generate_Doc_EDOKA Method",""];

View File

@@ -0,0 +1 @@
search_result['105']=["topic_0000000000000029.html","DocGenerator_from_EDOKA.generate_docdata Method",""];

View File

@@ -0,0 +1 @@
search_result['106']=["topic_000000000000002A.html","DOCGEN.Klassen Namespace",""];

View File

@@ -0,0 +1 @@
search_result['107']=["topic_000000000000002B.html","Excel_Reader Class",""];

View File

@@ -0,0 +1 @@
search_result['108']=["topic_000000000000002B_attached_props--.html","Excel_Reader Attached Properties",""];

View File

@@ -0,0 +1 @@
search_result['109']=["topic_000000000000002B_events--.html","Excel_Reader Events",""];

View File

@@ -0,0 +1 @@
search_result['110']=["topic_000000000000002B_methods--.html","Excel_Reader Methods",""];

View File

@@ -0,0 +1 @@
search_result['111']=["topic_000000000000002B_props--.html","Excel_Reader Properties",""];

View File

@@ -0,0 +1 @@
search_result['112']=["topic_000000000000002B_vars--.html","Excel_Reader Fields",""];

View File

@@ -0,0 +1 @@
search_result['113']=["topic_000000000000002C.html","Excel_Reader.get_valus_from_excel Method",""];

View File

@@ -0,0 +1 @@
search_result['114']=["topic_000000000000002D.html","SyncFExcel Class",""];

View File

@@ -0,0 +1 @@
search_result['115']=["topic_000000000000002D_attached_props--.html","SyncFExcel Attached Properties",""];

View File

@@ -0,0 +1 @@
search_result['116']=["topic_000000000000002D_events--.html","SyncFExcel Events",""];

View File

@@ -0,0 +1 @@
search_result['117']=["topic_000000000000002D_methods--.html","SyncFExcel Methods",""];

View File

@@ -0,0 +1 @@
search_result['118']=["topic_000000000000002D_props--.html","SyncFExcel Properties",""];

View File

@@ -0,0 +1 @@
search_result['119']=["topic_000000000000002D_vars--.html","SyncFExcel Fields",""];

View File

@@ -0,0 +1 @@
search_result['120']=["topic_000000000000002E.html","SyncFExcel.create_nativ Method",""];

View File

@@ -0,0 +1 @@
search_result['121']=["topic_000000000000002F.html","SyncFExcel.Generate_Excel Method",""];

View File

@@ -0,0 +1 @@
search_result['122']=["topic_0000000000000030.html","SyncFExcel.get_values Method",""];

View File

@@ -0,0 +1 @@
search_result['123']=["topic_0000000000000031.html","SyncFPDF Class",""];

View File

@@ -0,0 +1 @@
search_result['124']=["topic_0000000000000031_attached_props--.html","SyncFPDF Attached Properties",""];

View File

@@ -0,0 +1 @@
search_result['125']=["topic_0000000000000031_events--.html","SyncFPDF Events",""];

View File

@@ -0,0 +1 @@
search_result['126']=["topic_0000000000000031_methods--.html","SyncFPDF Methods",""];

View File

@@ -0,0 +1 @@
search_result['127']=["topic_0000000000000031_props--.html","SyncFPDF Properties",""];

View File

@@ -0,0 +1 @@
search_result['128']=["topic_0000000000000031_vars--.html","SyncFPDF Fields",""];

View File

@@ -0,0 +1 @@
search_result['129']=["topic_0000000000000032.html","SyncFPowerPoint Class",""];

View File

@@ -1 +1 @@
search_result['13']=["topic_0000000000000006.html","DocGen.Lic Method",""];
search_result['13']=["topic_0000000000000006.html","apikey Field",""];

View File

@@ -0,0 +1 @@
search_result['130']=["topic_0000000000000032_attached_props--.html","SyncFPowerPoint Attached Properties",""];

View File

@@ -0,0 +1 @@
search_result['131']=["topic_0000000000000032_events--.html","SyncFPowerPoint Events",""];

View File

@@ -0,0 +1 @@
search_result['132']=["topic_0000000000000032_methods--.html","SyncFPowerPoint Methods",""];

View File

@@ -0,0 +1 @@
search_result['133']=["topic_0000000000000032_props--.html","SyncFPowerPoint Properties",""];

View File

@@ -0,0 +1 @@
search_result['134']=["topic_0000000000000032_vars--.html","SyncFPowerPoint Fields",""];

View File

@@ -0,0 +1 @@
search_result['135']=["topic_0000000000000033.html","SyncFPowerPoint.create_nativ Method",""];

View File

@@ -0,0 +1 @@
search_result['136']=["topic_0000000000000034.html","SyncFWord Class",""];

View File

@@ -0,0 +1 @@
search_result['137']=["topic_0000000000000034_attached_props--.html","SyncFWord Attached Properties",""];

View File

@@ -0,0 +1 @@
search_result['138']=["topic_0000000000000034_events--.html","SyncFWord Events",""];

View File

@@ -0,0 +1 @@
search_result['139']=["topic_0000000000000034_methods--.html","SyncFWord Methods",""];

View File

@@ -1 +1 @@
search_result['14']=["topic_0000000000000007.html","DocGen Constructor",""];
search_result['14']=["topic_0000000000000007.html","resturi Field",""];

View File

@@ -0,0 +1 @@
search_result['140']=["topic_0000000000000034_props--.html","SyncFWord Properties",""];

View File

@@ -0,0 +1 @@
search_result['141']=["topic_0000000000000034_vars--.html","SyncFWord Fields",""];

View File

@@ -0,0 +1 @@
search_result['142']=["topic_0000000000000035.html","resturi Field",""];

View File

@@ -0,0 +1 @@
search_result['143']=["topic_0000000000000036.html","apikey Field",""];

View File

@@ -0,0 +1 @@
search_result['144']=["topic_0000000000000037.html","SyncFWord Constructor",""];

View File

@@ -0,0 +1 @@
search_result['145']=["topic_0000000000000038.html","SyncFWord.create_nativ Method",""];

View File

@@ -0,0 +1 @@
search_result['146']=["topic_0000000000000039.html","SyncFWord.Generate_Word Method",""];

View File

@@ -0,0 +1 @@
search_result['147']=["topic_000000000000003A.html","SyncFWord.ReplaceBookmarkText Method",""];

View File

@@ -0,0 +1 @@
search_result['148']=["topic_000000000000003B.html","SyncFWord.IterateTextBody Method",""];

View File

@@ -0,0 +1 @@
search_result['149']=["topic_000000000000003C.html","SyncFWord.ReplaceBookmarkContent Method",""];

View File

@@ -0,0 +1 @@
search_result['150']=["topic_000000000000003D.html","SyncFWord.resizeImage Method",""];

View File

@@ -0,0 +1 @@
search_result['151']=["topic_000000000000003E.html","SyncFWord.Insert_Barcode Method",""];

View File

@@ -0,0 +1 @@
search_result['152']=["topic_000000000000003F.html","SyncFWord.insert_Logo Method",""];

View File

@@ -0,0 +1 @@
search_result['153']=["topic_0000000000000040.html","SyncFWord.DocToPDF Method","Word to PDF-Konverter"];

View File

@@ -0,0 +1 @@
search_result['154']=["topic_0000000000000041.html","SyncFWord.GetPageNumber Method",""];

View File

@@ -0,0 +1 @@
search_result['155']=["topic_0000000000000042.html","SyncFWord.Print_Word Method",""];

View File

@@ -0,0 +1 @@
search_result['156']=["topic_0000000000000043.html","SyncFWord.SplitDocument Method",""];

View File

@@ -0,0 +1 @@
search_result['157']=["topic_0000000000000044.html","SyncFWord.SplitDocument_Part2 Method",""];

View File

@@ -0,0 +1 @@
search_result['158']=["topic_0000000000000045.html","SyncFWord.Replace_Text Method",""];

View File

@@ -0,0 +1 @@
search_result['159']=["topic_0000000000000046.html","SyncFWord.Replace_Fieldtext Method",""];

View File

@@ -1 +1 @@
search_result['16']=["topic_0000000000000008.html","DocGen(String) Constructor",""];
search_result['16']=["topic_0000000000000008.html","DocGen.Lic Method",""];

View File

@@ -0,0 +1 @@
search_result['160']=["topic_0000000000000047.html","SyncFWord.FindText Method",""];

View File

@@ -0,0 +1 @@
search_result['161']=["topic_0000000000000048.html","print Class",""];

View File

@@ -0,0 +1 @@
search_result['162']=["topic_0000000000000048_attached_props--.html","print Attached Properties",""];

View File

@@ -0,0 +1 @@
search_result['163']=["topic_0000000000000048_events--.html","print Events",""];

View File

@@ -0,0 +1 @@
search_result['164']=["topic_0000000000000048_methods--.html","print Methods",""];

View File

@@ -0,0 +1 @@
search_result['165']=["topic_0000000000000048_props--.html","print Properties",""];

View File

@@ -0,0 +1 @@
search_result['166']=["topic_0000000000000048_vars--.html","print Fields",""];

View File

@@ -0,0 +1 @@
search_result['167']=["topic_0000000000000049.html","print.printWord Method",""];

View File

@@ -0,0 +1 @@
search_result['168']=["topic_000000000000004A.html","DocGen Reference ",""];

View File

@@ -1 +1 @@
search_result['18']=["topic_0000000000000009.html","DocGen.GenDocID Method",""];
search_result['18']=["topic_0000000000000009.html","DocGen Constructor",""];

View File

@@ -1 +1 @@
search_result['19']=["topic_000000000000000A.html","DocGen.Barcodetest Method",""];
search_result['19']=["topic_0000000000000009_overloads--.html","DocGen Constructor",""];

View File

@@ -1 +1 @@
search_result['20']=["topic_000000000000000B.html","DocGen.generate_pdf Method",""];
search_result['20']=["topic_000000000000000A.html","DocGen(String) Constructor",""];

View File

@@ -1 +1 @@
search_result['21']=["topic_000000000000000C.html","DocGet Class",""];
search_result['21']=["topic_000000000000000A_overloads--.html","DocGen Constructor",""];

View File

@@ -1 +1 @@
search_result['22']=["topic_000000000000000C_attached_props--.html","DocGet Attached Properties",""];
search_result['22']=["topic_000000000000000B.html","DocGen(String, String, String) Constructor",""];

View File

@@ -1 +1 @@
search_result['23']=["topic_000000000000000C_events--.html","DocGet Events",""];
search_result['23']=["topic_000000000000000B_overloads--.html","DocGen Constructor",""];

View File

@@ -1 +1 @@
search_result['24']=["topic_000000000000000C_methods--.html","DocGet Methods",""];
search_result['24']=["topic_000000000000000C.html","DocGen.GenDocID Method",""];

View File

@@ -1 +1 @@
search_result['25']=["topic_000000000000000C_props--.html","DocGet Properties",""];
search_result['25']=["topic_000000000000000C_attached_props--.html","DocGet Attached Properties",""];

View File

@@ -1 +1 @@
search_result['26']=["topic_000000000000000C_vars--.html","DocGet Fields",""];
search_result['26']=["topic_000000000000000C_events--.html","DocGet Events",""];

View File

@@ -1 +1 @@
search_result['27']=["topic_000000000000000D.html","DocGet Constructor",""];
search_result['27']=["topic_000000000000000C_methods--.html","DocGet Methods",""];

View File

@@ -1 +1 @@
search_result['28']=["topic_000000000000000E.html","DocGet.Lic Method",""];
search_result['28']=["topic_000000000000000C_props--.html","DocGet Properties",""];

View File

@@ -1 +1 @@
search_result['29']=["topic_000000000000000F.html","DocGet.test_filetype Method",""];
search_result['29']=["topic_000000000000000C_vars--.html","DocGet Fields",""];

View File

@@ -1 +1 @@
search_result['30']=["topic_0000000000000010.html","DocGet.Get_FileType Method",""];
search_result['30']=["topic_000000000000000D.html","DocGen.Barcodetest Method",""];

View File

@@ -1 +1 @@
search_result['31']=["topic_0000000000000011.html","DocGet.GetDocAsFinalPDF Method",""];
search_result['31']=["topic_000000000000000E.html","DocGen.generate_pdf Method",""];

View File

@@ -1 +1 @@
search_result['32']=["topic_0000000000000012.html","DocGet.GetDocAsPDF Method",""];
search_result['32']=["topic_000000000000000F.html","DocGen.generate_serienbrief Method",""];

View File

@@ -1 +1 @@
search_result['33']=["topic_0000000000000013.html","DocGet.GetDoc Method",""];
search_result['33']=["topic_0000000000000010.html","DocGet Class",""];

View File

@@ -1 +1 @@
search_result['34']=["topic_0000000000000014.html","DocGet.ConvertFileToBase64 Method",""];
search_result['34']=["topic_0000000000000010_attached_props--.html","DocGet Attached Properties",""];

View File

@@ -1 +1 @@
search_result['35']=["topic_0000000000000015.html","DocGet.Convert_Word_To_PDF Method",""];
search_result['35']=["topic_0000000000000010_events--.html","DocGet Events",""];

View File

@@ -1 +1 @@
search_result['36']=["topic_0000000000000016.html","DocGet.Convert_Excel_To_PDF Method",""];
search_result['36']=["topic_0000000000000010_methods--.html","DocGet Methods",""];

View File

@@ -1 +1 @@
search_result['37']=["topic_0000000000000017.html","DocGet.Print_Doc Method",""];
search_result['37']=["topic_0000000000000010_props--.html","DocGet Properties",""];

View File

@@ -1 +1 @@
search_result['38']=["topic_0000000000000017_attached_props--.html","DocGenerator_from_EDOKA Attached Properties",""];
search_result['38']=["topic_0000000000000010_vars--.html","DocGet Fields",""];

View File

@@ -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