update 20251008

This commit is contained in:
Stefan Hutter
2025-10-08 17:23:08 +02:00
parent 2773ca3baa
commit 6b7de9389c
206 changed files with 855857 additions and 116 deletions

Binary file not shown.

Binary file not shown.

View File

@@ -364,6 +364,20 @@ namespace OnDocOffice
this.resturi = resturi;
this.apikey = apikey;
}
public void test_remove_signature()
{
Start_Application();
doc = word.Documents.Open(filename);
word_signature ws = new word_signature(this.connectstring);
ws.remove_unterschriften(ref word, dokumentid);
ws = null;
word.Visible = true;
doc.Close();
doc = null;
word.Quit(false);
word = null;
}
public bool Start_Application()
{
try
@@ -2125,4 +2139,5 @@ namespace OnDocOffice
}
}
}