Remove Barcode signatures which are placed in Ott files

Delete various Barcode signatures from Ott documents. Removing Barcode signatures requires simple C# code.


Download Free Trial

Get information about GroupDocs.Signature for .NET API features

GroupDocs.Signature for .NET API provides many ways to process your documents using electronic signatures. Digital signatures like texts, images, digital certificates, barcodes, QR-codes, stamps or metadata are available. Customers have possibility to add, delete, update, verify or search digital signatures at PDFs, MS Word documents, MS Excel workbooks, MS PowerPoint presentations, Adobe Photoshop files and various image formats. A vast number of useful features and settings are provided.

How to remove Barcode signatures from your Ott document

GroupDocs.Signature for .NET provides useful feature for clearing Ott documents of Barcode signatures with a few lines of code.

  • Firstly, instantiate Signature object passing path to your document as a constructor parameter.
  • Then, create an appropriate signature object and set up its unique identifier.
  • After that, invoke Delete method passing signature object which must be deleted.
  • Finally, process operation results.

System Requirements

GroupDocs.Signature for .NET are supported on all major platforms and operating systems. Before executing the code below, please make sure that you have the following prerequisites installed on your system.

  • Operating systems: Microsoft Windows, Linux, MacOS
  • Development environments: Microsoft Visual Studio, Xamarin, MonoDevelop
  • Frameworks: .NET Framework, .NET Standard, .NET Core, Mono
  • Download the latest version of GroupDocs.Signature for .NET from Nuget

        
// Set up input Ott file
string filePath = "input.ott";

// Instantiate Signature for input file
using (GroupDocs.Signature.Signature signature = new GroupDocs.Signature.Signature(filePath))
{
        // Id of signature which is supposed to be deleted
        // such Id may be obtained as result of search operation
        string id = "07f83369-318b-41ad-a843-732417b912c2";

        // provide signature features to delete
        // set up particular signature id
        BarcodeSignature signatureToDelete = new BarcodeSignature(id);

        // delete signature
        bool deleteResult = signature.Delete(signatureToDelete);

        // process deletion result
        if (deleteResult)
        {
            Console.WriteLine("Signature was deleted successfully!");
        }
}

Signing with Barcode signatures Live Demo

Add various electronic signatures to Ott file right now by visiting the GroupDocs.Signature App website.

No need to download API

No need to write any code

Just upload the source file

Get download link to save the file

Delete your Barcode signatures with C#

“Deletion of e-signatures which were added to various document formats. Remove signatures quickly without extra code.”

Delete BARCODE in PDF

(Portable Document Format)

Delete BARCODE in DOC

(Microsoft Word Binary Format)

Delete BARCODE in DOCX

(Office 2007+ Word Document)

Delete BARCODE in DOCM

(Microsoft Word 2007 Marco File)

Delete BARCODE in DOT

(Microsoft Word Template Files)

Delete BARCODE in DOTM

(Microsoft Word 2007+ Template File)

Delete BARCODE in DOTX

(Microsoft Word Template File )

Delete BARCODE in ODT

(OpenDocument Text File Format)

Delete BARCODE in RTF

(Rich Text Format)

Delete BARCODE in XLS

(Microsoft Excel Spreadsheet (Legacy))

Delete BARCODE in XLSX

(Open XML Workbook)

Delete BARCODE in XLSM

(Macro-enabled Spreadsheet)

Delete BARCODE in XLSB

(Excel Binary Workbook)

Delete BARCODE in CSV

(Comma Seperated Values)

Delete BARCODE in ODS

(OpenDocument Spreadsheet)

Delete BARCODE in OTS

(OpenDocument Spreadsheet Template)

Delete BARCODE in XLTX

(Excel Template)

Delete BARCODE in XLTM

(Excel Macro-Enabled Template)

Delete BARCODE in PPT

(Microsoft PowerPoint 97-2003)

Delete BARCODE in PPTX

(Open XML presentation Format)

Delete BARCODE in PPS

(PowerPoint Slide Show)

Delete BARCODE in PPSX

(PowerPoint Slide Show)

Delete BARCODE in ODP

(OpenDocument Presentation Format)

Delete BARCODE in OTP

(OpenDocument Standard Format)

Delete BARCODE in POTX

(Microsoft PowerPoint Template Presentation)

Delete BARCODE in POTM

(Microsoft PowerPoint Template File)

Delete BARCODE in PPTM

(Macro-enabled Presentation File)

Delete BARCODE in PPSM

(Macro-enabled Slide Show)

Back to top
 English